diff options
Diffstat (limited to 'BUILD')
-rwxr-xr-x | BUILD/SETUP.sh | 7 | ||||
-rwxr-xr-x | BUILD/compile-amd64-gprof-no-ndb | 7 | ||||
-rwxr-xr-x | BUILD/compile-dist | 1 |
3 files changed, 12 insertions, 3 deletions
diff --git a/BUILD/SETUP.sh b/BUILD/SETUP.sh index e940f7a3371..34bdfecf995 100755 --- a/BUILD/SETUP.sh +++ b/BUILD/SETUP.sh @@ -145,6 +145,7 @@ base_configs="--prefix=$prefix --enable-assembler " base_configs="$base_configs --with-extra-charsets=complex " base_configs="$base_configs --enable-thread-safe-client " base_configs="$base_configs --with-big-tables" +base_configs="$base_configs --with-plugin-maria" if test -d "$path/../cmd-line-utils/readline" then @@ -170,10 +171,10 @@ max_configs="$SSL_LIBRARY --with-plugins=max --with-embedded-server" # CPU and platform specific compilation flags. # alpha_cflags="$check_cpu_cflags -Wa,-m$cpu_flag" -amd64_cflags="$check_cpu_cflags" +amd64_cflags="$check_cpu_cflags -DSTACK_DIRECTION=-1" amd64_cxxflags="" # If dropping '--with-big-tables', add here "-DBIG_TABLES" -pentium_cflags="$check_cpu_cflags" -pentium64_cflags="$check_cpu_cflags -m64" +pentium_cflags="$check_cpu_cflags -DSTACK_DIRECTION=-1" +pentium64_cflags="$check_cpu_cflags -m64 -DSTACK_DIRECTION=-1" ppc_cflags="$check_cpu_cflags" sparc_cflags="" diff --git a/BUILD/compile-amd64-gprof-no-ndb b/BUILD/compile-amd64-gprof-no-ndb new file mode 100755 index 00000000000..9fd4c67155c --- /dev/null +++ b/BUILD/compile-amd64-gprof-no-ndb @@ -0,0 +1,7 @@ +#! /bin/sh +path=`dirname $0` +. "$path/SETUP.sh" +extra_flags="$amd64_cflags -pg -g" +extra_configs="$amd64_configs $max_no_ndb_configs --disable-shared $static_link" + +. "$path/FINISH.sh" diff --git a/BUILD/compile-dist b/BUILD/compile-dist index d9103e0a419..d0a49bbd78d 100755 --- a/BUILD/compile-dist +++ b/BUILD/compile-dist @@ -40,5 +40,6 @@ fi # Make sure to enable all features that affect "make dist" ./configure \ + --with-maria-storage-engine \ --with-ndbcluster make |