[compiler-rt] r369079 - Disable stack_trace_compressor_fuzzer.
Mitch Phillips via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 15 19:03:33 PDT 2019
Author: hctim
Date: Thu Aug 15 19:03:33 2019
New Revision: 369079
URL: http://llvm.org/viewvc/llvm-project?rev=369079&view=rev
Log:
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.
Modified:
compiler-rt/trunk/lib/gwp_asan/CMakeLists.txt
Modified: compiler-rt/trunk/lib/gwp_asan/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/gwp_asan/CMakeLists.txt?rev=369079&r1=369078&r2=369079&view=diff
==============================================================================
--- compiler-rt/trunk/lib/gwp_asan/CMakeLists.txt (original)
+++ compiler-rt/trunk/lib/gwp_asan/CMakeLists.txt Thu Aug 15 19:03:33 2019
@@ -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)
More information about the llvm-commits
mailing list