2012-04-05 06:12:04 +08:00
|
|
|
# Build for the AddressSanitizer runtime support library.
|
|
|
|
|
2012-06-20 18:18:43 +08:00
|
|
|
include_directories(..)
|
|
|
|
|
|
|
|
set(ASAN_SOURCES
|
|
|
|
asan_allocator.cc
|
|
|
|
asan_globals.cc
|
|
|
|
asan_interceptors.cc
|
|
|
|
asan_linux.cc
|
|
|
|
asan_mac.cc
|
|
|
|
asan_malloc_linux.cc
|
|
|
|
asan_malloc_mac.cc
|
|
|
|
asan_malloc_win.cc
|
|
|
|
asan_new_delete.cc
|
|
|
|
asan_poisoning.cc
|
|
|
|
asan_posix.cc
|
|
|
|
asan_printf.cc
|
|
|
|
asan_rtl.cc
|
|
|
|
asan_stack.cc
|
|
|
|
asan_stats.cc
|
|
|
|
asan_thread.cc
|
|
|
|
asan_thread_registry.cc
|
|
|
|
asan_win.cc
|
|
|
|
)
|
2012-04-05 06:12:04 +08:00
|
|
|
|
2012-06-25 16:40:10 +08:00
|
|
|
set(ASAN_CFLAGS "-fvisibility=hidden")
|
|
|
|
|
|
|
|
set(ASAN_COMMON_DEFINITIONS
|
|
|
|
ASAN_UAR=0
|
|
|
|
ASAN_HAS_EXCEPTIONS=1
|
|
|
|
ASAN_HAS_BLACKLIST=1
|
|
|
|
ASAN_NEEDS_SEGV=1)
|
|
|
|
|
2012-04-05 06:12:04 +08:00
|
|
|
if(CAN_TARGET_X86_64)
|
2012-06-25 16:40:10 +08:00
|
|
|
add_library(clang_rt.asan-x86_64 STATIC
|
|
|
|
${ASAN_SOURCES}
|
|
|
|
$<TARGET_OBJECTS:RTInterception.x86_64>
|
|
|
|
$<TARGET_OBJECTS:RTSanitizerCommon.x86_64>
|
|
|
|
)
|
|
|
|
set_property(TARGET clang_rt.asan-x86_64 PROPERTY COMPILE_FLAGS
|
|
|
|
"${ASAN_CFLAGS} ${TARGET_X86_64_CFLAGS}")
|
|
|
|
set_property(TARGET clang_rt.asan-x86_64 APPEND PROPERTY COMPILE_DEFINITIONS
|
|
|
|
${ASAN_COMMON_DEFINITIONS})
|
2012-04-05 06:12:04 +08:00
|
|
|
endif()
|
|
|
|
if(CAN_TARGET_I386)
|
2012-06-25 16:40:10 +08:00
|
|
|
add_library(clang_rt.asan-i386 STATIC
|
|
|
|
${ASAN_SOURCES}
|
|
|
|
$<TARGET_OBJECTS:RTInterception.i386>
|
|
|
|
$<TARGET_OBJECTS:RTSanitizerCommon.i386>
|
|
|
|
)
|
|
|
|
set_property(TARGET clang_rt.asan-i386 PROPERTY COMPILE_FLAGS
|
|
|
|
"${ASAN_CFLAGS} ${TARGET_I386_CFLAGS}")
|
|
|
|
set_property(TARGET clang_rt.asan-x86_64 APPEND PROPERTY COMPILE_DEFINITIONS
|
|
|
|
${ASAN_COMMON_DEFINITIONS})
|
2012-04-05 06:12:04 +08:00
|
|
|
endif()
|