diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-09-13 23:42:29 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-09-13 23:42:29 +0200 |
commit | a784d62dae58642fedf6e909102850ccdfe93431 (patch) | |
tree | 686b1b1ddc9010b2bb40e9cbebb9ec30bc2be7cf /BUILD | |
parent | e7c4e6d8708378f4b501eec3576a3229136144e3 (diff) | |
download | mariadb-git-a784d62dae58642fedf6e909102850ccdfe93431.tar.gz |
fix BUILD/compile-solaris-amd64 to produce working binaries
Diffstat (limited to 'BUILD')
-rwxr-xr-x | BUILD/compile-solaris-amd64 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/BUILD/compile-solaris-amd64 b/BUILD/compile-solaris-amd64 index 6aaafda073a..58e5cba7d8c 100755 --- a/BUILD/compile-solaris-amd64 +++ b/BUILD/compile-solaris-amd64 @@ -1,8 +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 +export LDFLAGS='-m64 -lmtmalloc -R/usr/sfw/lib/64' +export CFLAGS='-mtune=i386 -D__sun -m64 -mtune=athlon64' +export CXXFLAGS='-mtune=i386 -D__sun -m64 -mtune=athlon64' +cmake . -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DWITH_EXTRA_CHARSETS=complex -DWITH_READLINE=ON -DWITH_SSL=bundled -DWITH_MAX=ON -DWITH_EMBEDDED_SERVER=ON -DWITH_JEMALLOC=NO +gmake -j6 VERBOSE=1 |