mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
98406ba452
BUILD/*: Add valgrind_configs=--with-valgrind. BUILD/*: Remove -USAFEMALLOC from valgrind_flags. configure.in: Add AC_ARG_WITH(valgrind) and HAVE_VALGRIND. include/my_sys.h: Define a number of MEM_ wrappers for VALGRIND_ functions. include/my_sys.h: Make TRASH do MEM_UNDEFINED(). include/m_string.h: Remove unused macro bzero_if_purify(A,B). _mymalloc(): Declare MEM_UNDEFINED() on the allocated memory. _myfree(): Declare MEM_NOACCESS() on the freed memory. storage/innobase/include/univ.i: Enable UNIV_DEBUG_VALGRIND based on HAVE_VALGRIND rather than HAVE_purify. Possible things to do: * In my_global.h, remove the defined(HAVE_purify) condition from the _WIN32 uint3korr(). * In my_global.h *int*korr(), use | instead of + in order to keep the Valgrind V bits accurate * Consider replacing HAVE_purify with HAVE_VALGRIND * Use VALGRIND_CREATE_BLOCK, VALGRIND_DISCARD in mem_root and similar places
34 lines
1.1 KiB
Bash
Executable file
34 lines
1.1 KiB
Bash
Executable file
#! /bin/sh
|
|
|
|
path=`dirname $0`
|
|
. "$path/SETUP.sh"
|
|
|
|
# Note that we can't use ccache with icc as the generated .deps file will
|
|
# then contain wrong information
|
|
CC=icc
|
|
CXX=icpc
|
|
export CC CXX
|
|
|
|
extra_flags="$pentium_cflags $debug_cflags $valgrind_flags"
|
|
|
|
# Disable following warnings as these are generated by header files:
|
|
# 161 unrecognized pragma
|
|
# 444 destructor for base class xxx is not virtual
|
|
# 279 controlling expression is constant
|
|
# 810 conversion from ulonglong to ulong with cast
|
|
# 981 operands are evaluated in unspecified order
|
|
# 1292 warning for unknown 'attribute' options
|
|
# 1469 "xxx" clobber ignored
|
|
# 1572 floating-point equality and inequality comparisons are unreliable
|
|
|
|
# In C++
|
|
# 869 parameter "xxx" was never referenced
|
|
# (Problem with virtual functions)
|
|
# 874 support for placement delete is disabled
|
|
|
|
c_warnings="-Wall -Wcheck -wd161,444,279,810,981,1292,1469,1572"
|
|
cxx_warnings="$c_warnings -wd869,874"
|
|
base_cxxflags="-fno-exceptions -fno-rtti"
|
|
extra_configs="$pentium_configs $debug_configs $valgrind_configs"
|
|
|
|
. "$path/FINISH.sh"
|