summaryrefslogtreecommitdiff
path: root/BUILD/compile-solaris-sparc-purify
blob: c895d99c2cfc4de6ae3d05137df1b337685ebe8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#! /bin/sh

while test $# -gt 0
do
  case "$1" in
    --debug) EXTRA_CONFIG_FLAGS=--with-debug; shift ;;
    -h | --help )
      echo "Usage: $0 [-h|-n] [configure-options]"
      echo "  --debug		Compile with DBUG enabled"
      exit 0 ;;
    *)  echo "No such option '$1'" ; exit ;;
  esac
done

gmake -k clean || true 
/bin/rm -f */.deps/*.P config.cache
aclocal && autoheader && aclocal && automake && autoconf
# (cd bdb/dist && sh s_all)
(cd innobase && aclocal && autoheader && aclocal && automake && autoconf)

CFLAGS="-g -Wimplicit -Wreturn-type -Wswitch -Wtrigraphs -Wcomment -W -Wchar-subscripts -Wformat -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 --without-berkeley-db --with-embedded-server --with-innodb $EXTRA_CONFIG_FLAGS

gmake -j 4

cd sql ; mv mysqld mysqld-org ;
gmake CXXLD="purify -best-effort g++"  mysqld ; mv mysqld mysqld-purify
gmake CXXLD="quantify -best-effort g++"  mysqld ; mv mysqld mysqld-quantify
gmake CXXLD="purecov -best-effort g++"  mysqld ; mv mysqld mysqld-purecov
mv mysqld-org mysqld