diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-09-12 10:10:09 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-09-12 10:10:09 +0200 |
commit | adf637dff6484e602567a5294a43cb4b3aea606f (patch) | |
tree | 154d81303237c10d1d818c1771a12c08f6f4baa5 /BUILD/compile-solaris-amd64 | |
parent | 6ee207a515de8dd74cf071cac20abe13d7d83d88 (diff) | |
download | mariadb-git-adf637dff6484e602567a5294a43cb4b3aea606f.tar.gz |
tokudb buildbot fixes
BUILD/compile-solaris-amd64:
* call cmake directly, don't go through three layers of wrappers
(but preserve the compile-solaris-amd64 file - buildbot uses it for 5.1 and 5.5)
* disable jemalloc, it doesn't compile on our sol10-64 box
storage/federated/ha_federated.cc:
clang warning
storage/tokudb/CMakeLists.txt:
* require cmake-2.8.9, because 2.8.8 doesn't add -fPIC for POSITION_INDEPENDENT_CODE
property that ft-index CMakeLists.txt files are using
Diffstat (limited to 'BUILD/compile-solaris-amd64')
-rwxr-xr-x | BUILD/compile-solaris-amd64 | 36 |
1 files changed, 6 insertions, 30 deletions
diff --git a/BUILD/compile-solaris-amd64 b/BUILD/compile-solaris-amd64 index dbb7a5c2a7c..6aaafda073a 100755 --- a/BUILD/compile-solaris-amd64 +++ b/BUILD/compile-solaris-amd64 @@ -1,32 +1,8 @@ #!/bin/sh +# used for sol10-64 builder in buildbot, don't use it elsewhere +export LDFLAGS='-m64' +export CFLAGS='-D__sun -m64 -mtune=athlon64' +export CXXFLAGS='-D__sun -m64 -mtune=athlon64' +cmake -DBUILD_CONFIG=mysql_release -DWITH_JEMALLOC=NO . +gmake -j6 -# Build setup for Solaris 10 - -# Make the Sun Freeware packages use the bundled Perl, instead of their own: -# ln -s `which perl` /usr/local/bin -# Your $PATH needs to include (in this order): -# /usr/local/bin:/usr/sfw/bin:/usr/ccs/bin -# (For Sun Freeware, bundled GNU utilities, Solaris ar, etc.) -# -# Required packages from http://sunfreeware.com/indexintel10.html : -# (The GNU m4 bundled with Solaris is too old.) -# automake-1.10.2-sol10-x86-local.gz -# autoconf-2.63-sol10-x86-local.gz -# m4-1.4.12-sol10-x86-local.gz -# libsigsegv-2.6-sol10-x86-local.gz -# libtool-1.5.24-sol10-x86-local.gz -# ( how to install these packages: - # wget ftp://ftp.sunfreeware.com/pub/freeware/intel/10/automake-1.10.2-sol10-x86-local.gz - # gunzip automake-1.10.2-sol10-x86-local.gz - # pkgadd -d automake-1.10.2-sol10-x86-local -# ) - -path=`dirname $0` -. "$path/SETUP.sh" -extra_flags="$amd64_cflags -D__sun -m64 -mtune=athlon64" -extra_configs="$amd64_configs $max_configs --with-libevent" - -LDFLAGS="-m64 -lmtmalloc -R/usr/sfw/lib/64" -export LDFLAGS - -. "$path/FINISH.sh" |