2013-01-22 19:16:20 +00:00
|
|
|
. "$topsrcdir/build/mozconfig.common"
|
|
|
|
|
2012-06-26 16:26:57 +00:00
|
|
|
# Use Clang as specified in manifest
|
|
|
|
export CC="$topsrcdir/clang/bin/clang -fgnu89-inline"
|
|
|
|
export CXX="$topsrcdir/clang/bin/clang++"
|
2013-09-20 11:37:53 +00:00
|
|
|
export LLVM_SYMBOLIZER="$topsrcdir/clang/bin/llvm-symbolizer"
|
2012-05-15 22:24:14 +00:00
|
|
|
|
|
|
|
# Mandatory flags for ASan
|
2013-03-11 13:33:36 +00:00
|
|
|
export ASANFLAGS="-fsanitize=address -Dxmalloc=myxmalloc -fPIC"
|
2012-05-15 22:24:14 +00:00
|
|
|
export CFLAGS="$ASANFLAGS"
|
|
|
|
export CXXFLAGS="$ASANFLAGS"
|
2013-03-11 13:33:36 +00:00
|
|
|
export LDFLAGS="-fsanitize=address"
|
2012-05-15 22:24:14 +00:00
|
|
|
|
|
|
|
# Enable ASan specific code and build workarounds
|
|
|
|
ac_add_options --enable-address-sanitizer
|
|
|
|
|
|
|
|
# Mandatory options required for ASan builds (both on Linux and Mac)
|
|
|
|
export MOZ_DEBUG_SYMBOLS=1
|
|
|
|
ac_add_options --enable-debug-symbols
|
|
|
|
ac_add_options --disable-install-strip
|
|
|
|
ac_add_options --disable-jemalloc
|
|
|
|
ac_add_options --disable-crashreporter
|
|
|
|
ac_add_options --disable-elf-hack
|
2013-07-26 17:43:12 +00:00
|
|
|
|
|
|
|
# Avoid dependency on libstdc++ 4.7
|
|
|
|
ac_add_options --enable-stdcxx-compat
|