debug-fuzzing (986B)
1 ac_add_options --enable-debug=-gline-tables-only 2 3 . $topsrcdir/build/unix/mozconfig.linux 4 5 export LLVM_SYMBOLIZER="$MOZ_FETCHES_DIR/llvm-symbolizer/bin/llvm-symbolizer" 6 7 # Package js shell. 8 export MOZ_PACKAGE_JSSHELL=1 9 10 ac_add_options --enable-gczeal 11 ac_add_options --enable-fuzzing 12 unset MOZ_STDCXX_COMPAT 13 14 # Even in fuzzing builds without sanitizers, the UBSan runtime is pulled 15 # in as a dependency to allow libFuzzer to have rudimentary stacks. 16 # Hence we need to disable jemalloc until bug 1435148 is fully resolved. 17 ac_add_options --disable-jemalloc 18 19 # Also, for consistency we disable the crash reporter and solely rely 20 # on libFuzzer to provide stacks both in the browser fuzzing case as 21 # well as for libFuzzer targets. See also bug 1649062. 22 ac_add_options --disable-crashreporter 23 ac_add_options --disable-install-strip 24 25 # Need this to prevent name conflicts with the normal nightly build packages 26 export MOZ_PKG_SPECIAL=fuzzing 27 28 . "$topsrcdir/build/mozconfig.common.override"