diff options
-rw-r--r-- | compiler-rt/test/fuzzer/CMakeLists.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/compiler-rt/test/fuzzer/CMakeLists.txt b/compiler-rt/test/fuzzer/CMakeLists.txt index 4cec80774c9..ef46ec4a906 100644 --- a/compiler-rt/test/fuzzer/CMakeLists.txt +++ b/compiler-rt/test/fuzzer/CMakeLists.txt @@ -1,6 +1,12 @@ set(LIBFUZZER_TEST_DEPS ${SANITIZER_COMMON_LIT_TEST_DEPS}) if (NOT COMPILER_RT_STANDALONE_BUILD) - list(APPEND LIBFUZZER_TEST_DEPS fuzzer asan msan ubsan dfsan) + list(APPEND LIBFUZZER_TEST_DEPS fuzzer asan ubsan) + if (COMPILER_RT_HAS_MSAN) + list(APPEND LIBFUZZER_TEST_DEPS msan) + endif() + if (COMPILER_RT_HAS_DFSAN) + list(APPEND LIBFUZZER_TEST_DEPS dfsan) + endif() if(NOT APPLE AND COMPILER_RT_HAS_LLD) list(APPEND LIBFUZZER_TEST_DEPS lld) endif() |