[gn] Make ubsan errors fatal, as in cmake

Apparently ubsan errors are non-fatal by default. If you introduce UB
into LLVM and run the tests, if errors are not fatal, the test will
still produce the expected output and the tests will pass. In order to
make ubsan errors show up as test failures, they have to be made fatal.
Pass the -fno-sanitize-recover=all flag to make it so.

Differential Revision: https://reviews.llvm.org/D103298
This commit is contained in:
Reid Kleckner 2021-05-27 20:00:20 -07:00
parent 0c4f76c942
commit 4c6e2774d8
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ config("compiler_defaults") {
if (use_ubsan) {
assert(is_clang && current_os == "linux",
"ubsan only supported on Linux/Clang")
cflags += [ "-fsanitize=undefined" ]
cflags += [ "-fsanitize=undefined", "-fno-sanitize-recover=all" ]
ldflags += [ "-fsanitize=undefined" ]
}