compile-pentium-valgrind-max 1.63 KB
Newer Older
unknown's avatar
unknown committed
1 2
#! /bin/sh

3 4 5 6 7 8 9 10 11 12 13 14
echo "\
********************************************************************************
Note that by default BUILD/compile-pentium-valgrind-max calls 'configure' with
--enable-assembler. When Valgrind detects an error involving an assembly
function (for example an uninitialized value used as an argument of an assembly
function), Valgrind will not print the stacktrace and 'valgrind
--gdb-attach=yes' will not work either. If you need a stacktrace in those cases,
you have to run BUILD/compile-pentium-valgrind-max with the --disable-assembler
argument.
********************************************************************************
"

unknown's avatar
unknown committed
15 16 17
path=`dirname $0`
. "$path/SETUP.sh"

unknown's avatar
unknown committed
18
extra_flags="$pentium_cflags $debug_cflags -USAFEMALLOC -DHAVE_purify"
unknown's avatar
unknown committed
19 20 21 22 23 24 25
c_warnings="$c_warnings $debug_extra_warnings"
cxx_warnings="$cxx_warnings $debug_extra_warnings"
extra_configs="$pentium_configs $debug_configs"

extra_configs="$extra_configs --with-berkeley-db --with-innodb --with-embedded-server --with-openssl"

. "$path/FINISH.sh"
26 27 28 29 30 31 32 33 34 35 36 37

echo "\
********************************************************************************
Note that by default BUILD/compile-pentium-valgrind-max calls 'configure' with
--enable-assembler. When Valgrind detects an error involving an assembly
function (for example an uninitialized value used as an argument of an assembly
function), Valgrind will not print the stacktrace and 'valgrind
--gdb-attach=yes' will not work either. If you need a stacktrace in those cases,
you have to run BUILD/compile-pentium-valgrind-max with the --disable-assembler
argument.
********************************************************************************
"