diff options
author | monty@donna.mysql.fi <> | 2001-03-26 13:27:36 +0300 |
---|---|---|
committer | monty@donna.mysql.fi <> | 2001-03-26 13:27:36 +0300 |
commit | 44c0545ab9ed408597886810976b2bf63c053aab (patch) | |
tree | e9c9fdeab5d0a635045172c211af567c8b6a81b9 /BUILD/compile-solaris-sparc-purify | |
parent | 2ff0334c231433aed0e14107cf1d6225c000e30b (diff) | |
download | mariadb-git-44c0545ab9ed408597886810976b2bf63c053aab.tar.gz |
Added test case that crashed Innobase
Diffstat (limited to 'BUILD/compile-solaris-sparc-purify')
-rwxr-xr-x | BUILD/compile-solaris-sparc-purify | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/BUILD/compile-solaris-sparc-purify b/BUILD/compile-solaris-sparc-purify index bad8a569ea3..7b655520dab 100755 --- a/BUILD/compile-solaris-sparc-purify +++ b/BUILD/compile-solaris-sparc-purify @@ -1,9 +1,11 @@ #! /bin/sh +gmake -k clean || true +/bin/rm -f */.deps/*.P config.cache -path=`dirname $0` -. "$path/SETUP.sh" +aclocal && autoheader && aclocal && automake && autoconf +(cd bdb/dist && sh s_all) +(cd innobase && aclocal && autoheader && aclocal && automake && autoconf) -extra_flags="$sparc_cflags -DHAVE_PURIFY -O2" -extra_configs="$sparc_configs --with-debug=full" +CFLAGS="-Wimplicit -Wreturn-type -Wid-clash-51 -Wswitch -Wtrigraphs -Wcomment -W -Wchar-subscripts -Wformat -Wimplicit-function-dec -Wimplicit-int -Wparentheses -Wsign-compare -Wwrite-strings -Wunused -DHAVE_purify -O2" CXX=gcc CXXFLAGS="-Wimplicit -Wreturn-type -Wid-clash-51 -Wswitch -Wtrigraphs -Wcomment -W -Wchar-subscripts -Wformat -Wimplicit-function-dec -Wimplicit-int -Wparentheses -Wsign-compare -Wwrite-strings -Woverloaded-virtual -Wextern-inline -Wsign-promo -Wreorder -Wctor-dtor-privacy -Wnon-virtual-dtor -felide-constructors -fno-exceptions -fno-rtti -DHAVE_PURIFY -O2" ./configure --prefix=/usr/local/mysql --enable-assembler --with-extra-charsets=complex --enable-thread-safe-client --with-debug=full -. "$path/FINISH.sh" +gmake -j 4 |