tor-browser

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

fuzzing-ccov (731B)


      1 . "$topsrcdir/browser/config/mozconfigs/linux64/code-coverage"
      2 
      3 export LLVM_SYMBOLIZER="$MOZ_FETCHES_DIR/llvm-symbolizer/bin/llvm-symbolizer"
      4 
      5 # Even in fuzzing builds without sanitizers, the UBSan runtime is pulled
      6 # in as a dependency to allow libFuzzer to have rudimentary stacks.
      7 # Hence we need to disable jemalloc until bug 1435148 is fully resolved.
      8 ac_add_options --disable-jemalloc
      9 
     10 ac_add_options --enable-debug-symbols=-g1
     11 ac_add_options --enable-fuzzing
     12 ac_add_options --enable-gczeal
     13 
     14 # Also, for consistency we disable the crash reporter and solely rely
     15 # on libFuzzer to provide stacks both in the browser fuzzing case as
     16 # well as for libFuzzer targets. See also bug 1649062.
     17 ac_add_options --disable-crashreporter