diff options
author | jonas@perch.ndb.mysql.com <> | 2006-08-14 14:11:51 +0200 |
---|---|---|
committer | jonas@perch.ndb.mysql.com <> | 2006-08-14 14:11:51 +0200 |
commit | 73c58c3234a7b6efcc2e5fbb35c9cc6493aab5e8 (patch) | |
tree | 5e5a6c9c5ab4ad6eb12d65680fcfd12e3cc4e2f4 /BUILD | |
parent | f6f5f475ea1dd7730a45546e29da63a35ca2bbb9 (diff) | |
parent | c22a8afc4ba718ac548742b812ca5e90b783aece (diff) | |
download | mariadb-git-73c58c3234a7b6efcc2e5fbb35c9cc6493aab5e8.tar.gz |
Merge perch.ndb.mysql.com:/home/jonas/src/50-work
into perch.ndb.mysql.com:/home/jonas/src/51-work
Diffstat (limited to 'BUILD')
-rwxr-xr-x | BUILD/compile-ndb-autotest | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/BUILD/compile-ndb-autotest b/BUILD/compile-ndb-autotest index 3ef0091c155..be28cc28346 100755 --- a/BUILD/compile-ndb-autotest +++ b/BUILD/compile-ndb-autotest @@ -3,7 +3,17 @@ path=`dirname $0` . "$path/SETUP.sh" -extra_flags="$fast_cflags $max_cflags -g" -extra_configs="$max_configs --with-ndb-test --with-ndb-ccflags="-DERROR_INSERT"" +extra_configs="$max_configs --with-ndb-test --with-ndb-ccflags='-DERROR_INSERT'" +if [ "$full_debug" ] +then + extra_flags="$debug_cflags" + c_warnings="$c_warnings $debug_extra_warnings" + cxx_warnings="$cxx_warnings $debug_extra_warnings" + extra_configs="$debug_configs $extra_configs" +else + extra_flags="$fast_cflags" +fi + +extra_flags="$extra_flags $max_cflags -g" . "$path/FINISH.sh" |