bolt/deps/llvm-18.1.8/compiler-rt/lib/safestack/CMakeLists.txt
2025-02-14 19:21:04 +01:00

19 lines
431 B
CMake

add_compiler_rt_component(safestack)
set(SAFESTACK_SOURCES
safestack.cpp
)
include_directories(..)
set(SAFESTACK_CFLAGS ${SANITIZER_COMMON_CFLAGS})
foreach(arch ${SAFESTACK_SUPPORTED_ARCH})
add_compiler_rt_runtime(clang_rt.safestack
STATIC
ARCHS ${arch}
SOURCES ${SAFESTACK_SOURCES}
$<TARGET_OBJECTS:RTInterception.${arch}>
CFLAGS ${SAFESTACK_CFLAGS}
PARENT_TARGET safestack)
endforeach()