2000-12-18 23:24:19 +02:00
|
|
|
#! /bin/sh
|
2001-03-26 13:27:36 +03:00
|
|
|
gmake -k clean || true
|
|
|
|
/bin/rm -f */.deps/*.P config.cache
|
2000-07-31 21:29:14 +02:00
|
|
|
|
2001-03-26 13:27:36 +03:00
|
|
|
aclocal && autoheader && aclocal && automake && autoconf
|
|
|
|
(cd bdb/dist && sh s_all)
|
|
|
|
(cd innobase && aclocal && autoheader && aclocal && automake && autoconf)
|
2000-07-31 21:29:14 +02:00
|
|
|
|
2002-05-21 20:35:58 +03:00
|
|
|
CFLAGS="-g -Wimplicit -Wreturn-type -Wswitch -Wtrigraphs -Wcomment -W -Wchar-subscripts -Wformat -Wimplicit-function-dec -Wimplicit-int -Wparentheses -Wsign-compare -Wwrite-strings -Wunused -DHAVE_purify -DEXTRA_DEBUG -O2" CXX=gcc CXXLD=g++ CXXFLAGS="-g -Wimplicit -Wreturn-type -Wswitch -Wtrigraphs -Wcomment -W -Wchar-subscripts -Wformat -Wparentheses -Wsign-compare -Wwrite-strings -Woverloaded-virtual -Wsign-promo -Wreorder -Wctor-dtor-privacy -Wnon-virtual-dtor -felide-constructors -fno-exceptions -fno-rtti -DHAVE_purify -DEXTRA_DEBUG -O2" ./configure --prefix=/usr/local/mysql --enable-assembler --with-extra-charsets=complex --enable-thread-safe-client --with-berkeley-db --with-innodb
|
2000-12-18 23:24:19 +02:00
|
|
|
|
2001-03-26 13:27:36 +03:00
|
|
|
gmake -j 4
|
2001-08-10 17:05:54 +03:00
|
|
|
|
2001-08-18 13:11:58 +03:00
|
|
|
cd sql ; rm mysqld ;
|
|
|
|
make CXXLD="purify -best-effort g++" mysqld ; mv mysqld mysqld-purify
|
|
|
|
make CXXLD="quantify -best-effort g++" mysqld ; mv mysqld mysqld-quantify
|
|
|
|
make CXXLD="purecov -best-effort g++" mysqld ; mv mysqld mysqld-purecov
|
|
|
|
|