diff options
author | unknown <kostja@oak.local> | 2003-08-14 13:19:17 +0400 |
---|---|---|
committer | unknown <kostja@oak.local> | 2003-08-14 13:19:17 +0400 |
commit | 95728904c9587d009e7d803384663c87ed1e79fd (patch) | |
tree | 25deb0694e0721078c3cc1a2745b42230afb6750 /BUILD | |
parent | dc271c8fc362b8ddc8897f3a645aa97e87b1d2f9 (diff) | |
download | mariadb-git-95728904c9587d009e7d803384663c87ed1e79fd.tar.gz |
added compile-pentium-maintainer -
equivalent of compile-pentium-debug but with
--enable-maintainer-mode configure option
Maybe it's worth to merge compile-mentium-debug
and compile-pentium-maintainer to a single script
Diffstat (limited to 'BUILD')
-rwxr-xr-x | BUILD/compile-pentium-maintainer | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/BUILD/compile-pentium-maintainer b/BUILD/compile-pentium-maintainer new file mode 100755 index 00000000000..1265154dc76 --- /dev/null +++ b/BUILD/compile-pentium-maintainer @@ -0,0 +1,13 @@ +#! /bin/sh + +path=`dirname $0` +. "$path/SETUP.sh" + +extra_flags="$pentium_cflags $debug_cflags" +c_warnings="$c_warnings $debug_extra_warnings" +cxx_warnings="$cxx_warnings $debug_extra_warnings" +extra_configs="$pentium_configs $debug_configs " + +extra_configs="$extra_configs --enable-maintainer-mode" + +. "$path/FINISH.sh" |