mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 05:11:16 +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
25 lines
893 B
Plaintext
25 lines
893 B
Plaintext
. "$topsrcdir/browser/config/mozconfigs/win64/common-win64"
|
|
|
|
if [ -d "$MOZ_FETCHES_DIR/clang" ]; then
|
|
CLANG_LIB_DIR="$(cd $MOZ_FETCHES_DIR/clang/lib/clang/* && cd lib/windows && pwd)"
|
|
|
|
export LIB=$CLANG_LIB_DIR
|
|
export LDFLAGS="clang_rt.asan_dynamic-x86_64.lib clang_rt.asan_dynamic_runtime_thunk-x86_64.lib"
|
|
|
|
export MOZ_COPY_PDBS=1
|
|
export LLVM_SYMBOLIZER="$MOZ_FETCHES_DIR/llvm-symbolizer/bin/llvm-symbolizer.exe"
|
|
export MOZ_CLANG_RT_ASAN_LIB_PATH="${CLANG_LIB_DIR}/clang_rt.asan_dynamic-x86_64.dll"
|
|
fi
|
|
|
|
# Enable ASan specific code and build workarounds
|
|
ac_add_options --enable-address-sanitizer
|
|
|
|
# Mandatory options required for ASan builds
|
|
ac_add_options --enable-debug-symbols
|
|
ac_add_options --disable-jemalloc
|
|
ac_add_options --disable-crashreporter
|
|
ac_add_options --disable-profiling
|
|
|
|
. "$topsrcdir/build/mozconfig.clang-cl"
|
|
. "$topsrcdir/build/mozconfig.lld-link"
|