nightly-asan (799B)
1 ac_add_options --enable-debug-symbols=-gline-tables-only 2 3 # ASan specific options on Linux 4 ac_add_options --enable-valgrind 5 6 . $topsrcdir/build/unix/mozconfig.asan 7 8 # Enable ASan for rust code. This is done for specific build tasks rather than 9 # globally in mozconfig.asan because it requires an unstable -Z flag. 10 export RUSTFLAGS="$RUSTFLAGS -Zsanitizer=address" 11 12 # Piggybacking UBSan for now since only a small subset of checks are enabled. 13 # A new build can be created when appropriate. 14 ac_add_options --enable-undefined-sanitizer 15 16 # Package js shell. 17 export MOZ_PACKAGE_JSSHELL=1 18 19 # Need this to prevent name conflicts with the normal nightly build packages 20 export MOZ_PKG_SPECIAL=asan 21 22 # Disable telemetry 23 ac_add_options MOZ_TELEMETRY_REPORTING= 24 25 . "$topsrcdir/build/mozconfig.common.override"