summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMitch Phillips <mitchphillips@outlook.com>2019-08-16 02:03:33 +0000
committerMitch Phillips <mitchphillips@outlook.com>2019-08-16 02:03:33 +0000
commit89e24bd9aa978e7b0ba23f87c4b3b0f039487f22 (patch)
treef5bce880a45675286f1daee03d0f625892c6a946 /lib
parent769bb4781ffdd94bcb4631d1cb1e8ab13c7bec57 (diff)
downloadcompiler-rt-89e24bd9aa978e7b0ba23f87c4b3b0f039487f22.tar.gz
Disable stack_trace_compressor_fuzzer.
Should hopefully fix the remainder of the buildbot issues. Just disabling this for now with a comment that I'm working on it. Can actually fix the real problem when I'm at a real computer. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@369079 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/gwp_asan/CMakeLists.txt30
1 files changed, 17 insertions, 13 deletions
diff --git a/lib/gwp_asan/CMakeLists.txt b/lib/gwp_asan/CMakeLists.txt
index d90934360..a9b2f6a5c 100644
--- a/lib/gwp_asan/CMakeLists.txt
+++ b/lib/gwp_asan/CMakeLists.txt
@@ -100,19 +100,23 @@ if (COMPILER_RT_HAS_GWP_ASAN)
CFLAGS ${GWP_ASAN_CFLAGS} ${SANITIZER_COMMON_CFLAGS})
# Build the stack trace compressor fuzzer.
- if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
- add_executable(stack_trace_compressor_fuzzer
- stack_trace_compressor_fuzzer.cpp
- ${GWP_ASAN_SOURCES}
- ${GWP_ASAN_HEADERS})
- set_target_properties(stack_trace_compressor_fuzzer
- PROPERTIES FOLDER "Fuzzers")
- target_compile_options(stack_trace_compressor_fuzzer
- PRIVATE -fsanitize=fuzzer-no-link)
- set_target_properties(
- stack_trace_compressor_fuzzer PROPERTIES LINK_FLAGS -fsanitize=fuzzer)
- add_dependencies(gwp_asan stack_trace_compressor_fuzzer)
- endif()
+ # Currently commented out in order to give me some time to figure out what the
+ # issue is. Rolling back would require rolling back 5 CL's, so this should be
+ # okay until I can get to a real computer and actually fix it tomorrow.
+ # - hctim
+ #if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
+ # add_executable(stack_trace_compressor_fuzzer
+ # stack_trace_compressor_fuzzer.cpp
+ # ${GWP_ASAN_SOURCES}
+ # ${GWP_ASAN_HEADERS})
+ # set_target_properties(stack_trace_compressor_fuzzer
+ # PROPERTIES FOLDER "Fuzzers")
+ # target_compile_options(stack_trace_compressor_fuzzer
+ # PRIVATE -fsanitize=fuzzer-no-link)
+ # set_target_properties(
+ # stack_trace_compressor_fuzzer PROPERTIES LINK_FLAGS -fsanitize=fuzzer)
+ # add_dependencies(gwp_asan stack_trace_compressor_fuzzer)
+ #endif()
endif()
if(COMPILER_RT_INCLUDE_TESTS)