diff options
-rw-r--r-- | compiler-rt/lib/gwp_asan/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/gwp_asan/CMakeLists.txt b/compiler-rt/lib/gwp_asan/CMakeLists.txt index dadde365458..552a447ea1b 100644 --- a/compiler-rt/lib/gwp_asan/CMakeLists.txt +++ b/compiler-rt/lib/gwp_asan/CMakeLists.txt @@ -107,7 +107,7 @@ if (COMPILER_RT_HAS_GWP_ASAN) # is >= 6.0. if (COMPILER_RT_BUILD_LIBFUZZER AND "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang" AND - CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 6.0) + NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 6.0) add_executable(stack_trace_compressor_fuzzer stack_trace_compressor_fuzzer.cpp ${GWP_ASAN_SOURCES} |