diff options
Diffstat (limited to 'BUILD/compile-solaris-amd64')
-rwxr-xr-x | BUILD/compile-solaris-amd64 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/BUILD/compile-solaris-amd64 b/BUILD/compile-solaris-amd64 new file mode 100755 index 00000000..b24c1460 --- /dev/null +++ b/BUILD/compile-solaris-amd64 @@ -0,0 +1,8 @@ +#!/bin/sh +# used for sol10-64 builder in buildbot, don't use it elsewhere +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_ZLIB=bundled -DPLUGIN_INNOBASE=NO +gmake -j6 VERBOSE=1 + |