tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

mozconfig.asan (506B)


      1 . "$topsrcdir/browser/config/mozconfigs/win64/common-win64"
      2 
      3 if [ -d "$MOZ_FETCHES_DIR/clang" ]; then
      4     export MOZ_COPY_PDBS=1
      5     export LLVM_SYMBOLIZER="$MOZ_FETCHES_DIR/llvm-symbolizer/bin/llvm-symbolizer.exe"
      6 fi
      7 
      8 # Enable ASan specific code and build workarounds
      9 ac_add_options --enable-address-sanitizer
     10 
     11 # Mandatory options required for ASan builds
     12 ac_add_options --disable-jemalloc
     13 ac_add_options --disable-crashreporter
     14 ac_add_options --disable-profiling
     15 
     16 . "$topsrcdir/build/mozconfig.clang-cl"