diff options
Diffstat (limited to 'BUILD/compile-solaris-amd64-debug')
-rwxr-xr-x[-rw-r--r--] | BUILD/compile-solaris-amd64-debug | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/BUILD/compile-solaris-amd64-debug b/BUILD/compile-solaris-amd64-debug index ec1573fa0ad..d0f05579dc4 100644..100755 --- a/BUILD/compile-solaris-amd64-debug +++ b/BUILD/compile-solaris-amd64-debug @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # Copyright (C) 2007 MySQL AB # @@ -17,10 +17,10 @@ path=`dirname $0` . "$path/SETUP.sh" -amd64_cflags="-m64 -mtune=athlon64" -extra_flags="$amd64_cflags $debug_cflags $max_cflags" -c_warnings="$c_warnings $debug_extra_warnings" -cxx_warnings="$cxx_warnings $debug_extra_warnings" -extra_configs="$amd64_configs $debug_configs $max_configs --enable-thread-safe-client" +extra_flags="$amd64_cflags -D__sun -m64 -mtune=athlon64 $debug_cflags" +extra_configs="$amd64_configs $debug_configs $max_configs --with-libevent" + +LDFLAGS="-m64 -lmtmalloc -R/usr/sfw/lib/64" +export LDFLAGS . "$path/FINISH.sh" |