diff options
author | Kostya Serebryany <kcc@google.com> | 2016-08-25 23:30:02 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2016-08-25 23:30:02 +0000 |
commit | 1426f59a76591ed507d81f1593e34fd3894b8231 (patch) | |
tree | 89dcbe5e63f1eaf101b1dc75bc795bd1d221d075 /llvm/lib/Fuzzer | |
parent | 1fde590663e14ae2c04383718be6989f779cd7e0 (diff) | |
download | bcm5719-llvm-1426f59a76591ed507d81f1593e34fd3894b8231.tar.gz bcm5719-llvm-1426f59a76591ed507d81f1593e34fd3894b8231.zip |
[libFuzzer] make sure we have symbols on fuzzer tests
llvm-svn: 279792
Diffstat (limited to 'llvm/lib/Fuzzer')
-rw-r--r-- | llvm/lib/Fuzzer/test/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Fuzzer/test/CMakeLists.txt b/llvm/lib/Fuzzer/test/CMakeLists.txt index 1d82408d7cb..340c5b90a1e 100644 --- a/llvm/lib/Fuzzer/test/CMakeLists.txt +++ b/llvm/lib/Fuzzer/test/CMakeLists.txt @@ -25,7 +25,7 @@ foreach (VARNAME ${variables_to_filter}) endforeach() # Enable the coverage instrumentation (it is disabled for the Fuzzer lib). -set(CMAKE_CXX_FLAGS "${LIBFUZZER_FLAGS_BASE} -fsanitize-coverage=edge,indirect-calls") +set(CMAKE_CXX_FLAGS "${LIBFUZZER_FLAGS_BASE} -fsanitize-coverage=edge,indirect-calls -g") # add_libfuzzer_test(<name> # SOURCES source0.cpp [source1.cpp ...] |