forked from OSchip/llvm-project
14 lines
385 B
CMake
14 lines
385 B
CMake
|
set(PROFILE_SOURCES
|
||
|
GCDAProfiling.c)
|
||
|
|
||
|
filter_available_targets(PROFILE_SUPPORTED_ARCH x86_64 i386)
|
||
|
|
||
|
if(NOT APPLE)
|
||
|
# FIXME: Add support for profile.rt on Mac.
|
||
|
foreach(arch ${PROFILE_SUPPORTED_ARCH})
|
||
|
add_compiler_rt_static_runtime(clang_rt.profile-${arch} ${arch}
|
||
|
SOURCES ${PROFILE_SOURCES}
|
||
|
CFLAGS --sysroot=${COMPILER_RT_LINUX_SDK_SYSROOT})
|
||
|
endforeach()
|
||
|
endif()
|