mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 12:51:06 +00:00
3885f30dfb
The llvm-symbolizer tasks currently extract a llvm-symbolizer from clang tasks. Changes in clang 14 make the hack that we have in place to keep llvm-symbolizer statically linked to libllvm while clang uses a dynamic libllvm not work anymore, so it's time to bite the bullet and build llvm-symbolizer separately. We share most of the build setup with the compiler-rt build. Differential Revision: https://phabricator.services.mozilla.com/D140711
15 lines
496 B
Plaintext
15 lines
496 B
Plaintext
. "$topsrcdir/build/unix/mozconfig.unix"
|
|
|
|
export LLVM_SYMBOLIZER="$MOZ_FETCHES_DIR/llvm-symbolizer/bin/llvm-symbolizer"
|
|
#
|
|
# 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-profiling
|