mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-05 02:16:07 +00:00

CFI itself, on the other hand, doesn't require anything, including sanitizer_common. llvm-svn: 248830
49 lines
968 B
CMake
49 lines
968 B
CMake
# First, add the subdirectories which contain feature-based runtime libraries
|
|
# and several convenience helper libraries.
|
|
|
|
include(AddCompilerRT)
|
|
include(SanitizerUtils)
|
|
|
|
if(COMPILER_RT_BUILD_BUILTINS)
|
|
add_subdirectory(builtins)
|
|
endif()
|
|
|
|
if(COMPILER_RT_BUILD_SANITIZERS)
|
|
if(COMPILER_RT_HAS_INTERCEPTION)
|
|
add_subdirectory(interception)
|
|
endif()
|
|
|
|
if(COMPILER_RT_HAS_SANITIZER_COMMON)
|
|
add_subdirectory(sanitizer_common)
|
|
add_subdirectory(lsan)
|
|
add_subdirectory(ubsan)
|
|
endif()
|
|
|
|
add_subdirectory(cfi)
|
|
|
|
if(COMPILER_RT_HAS_ASAN)
|
|
add_subdirectory(asan)
|
|
endif()
|
|
|
|
if(COMPILER_RT_HAS_DFSAN)
|
|
add_subdirectory(dfsan)
|
|
endif()
|
|
|
|
if(COMPILER_RT_HAS_MSAN)
|
|
add_subdirectory(msan)
|
|
endif()
|
|
|
|
if(COMPILER_RT_HAS_PROFILE)
|
|
add_subdirectory(profile)
|
|
endif()
|
|
|
|
if(COMPILER_RT_HAS_TSAN)
|
|
add_subdirectory(tsan)
|
|
add_subdirectory(tsan/dd)
|
|
endif()
|
|
|
|
if(COMPILER_RT_HAS_SAFESTACK)
|
|
add_subdirectory(safestack)
|
|
endif()
|
|
endif()
|