Revision 1daea36338a01eecee9938e7dae7d95cbfb131b2 authored by Mark Banner on 15 February 2016, 23:43:42 UTC, committed by Mark Banner on 15 February 2016, 23:43:42 UTC
--HG--
rename : browser/extensions/loop/chrome/content/panels/panel.html => browser/extensions/loop/chrome/content/panels/slideshow.html
extra : transplant_source : %F5u%FC%831%E7%3AKnU%FA%DB%7B%B9%DD%87%D1%3C%99%9F
1 parent 73a5a25
Raw File
mozconfig.tsan
MOZ_AUTOMATION_L10N_CHECK=0

. "$topsrcdir/build/mozconfig.common"

# Use Clang as specified in manifest
export CC="$topsrcdir/clang/bin/clang"
export CXX="$topsrcdir/clang/bin/clang++"
export LLVM_SYMBOLIZER="$topsrcdir/clang/bin/llvm-symbolizer"

# Mandatory flag for TSan
export CFLAGS="-fsanitize=thread"
export CXXFLAGS="-fsanitize=thread"
export LDFLAGS="-fsanitize=thread"

# Enable TSan specific code and build workarounds
ac_add_options --enable-thread-sanitizer

# The ThreadSanitizer is not compatible with sanboxing
# (see bug 1182565)
ac_add_options --disable-sandbox

# These are required by TSan
ac_add_options --disable-jemalloc
ac_add_options --disable-crashreporter
ac_add_options --disable-elf-hack
ac_add_options --enable-pie

# Keep symbols to symbolize TSan traces
ac_add_options --disable-install-strip
# -gline-tables-only results in significantly smaller binaries.
ac_add_options --enable-debug-symbols="-gline-tables-only"

# Avoid dependency on libstdc++ 4.7
ac_add_options --enable-stdcxx-compat
back to top