summaryrefslogtreecommitdiff
path: root/configurecompiler.cmake
diff options
context:
space:
mode:
authorVyacheslav Cherkashin <v.cherkashin@samsung.com>2019-07-19 15:05:47 +0300
committerVyacheslav Cherkashin <v.cherkashin@samsung.com>2019-09-03 15:29:17 +0300
commit8f6e5a94332eab390956edc1b0428bfbc42aa74d (patch)
tree59182c3199c4c815ffadf7b25e07a9b47208b22f /configurecompiler.cmake
parent5e77cc976a2de2395de2f928e86151a611f594ba (diff)
downloadcoreclr-8f6e5a94332eab390956edc1b0428bfbc42aa74d.tar.gz
coreclr-8f6e5a94332eab390956edc1b0428bfbc42aa74d.tar.bz2
coreclr-8f6e5a94332eab390956edc1b0428bfbc42aa74d.zip
[Tizen] Enable Tizen ASan runtime supportsandbox/ches01/integrate-libasansi
Enable libasansi.so support (libasan.so with switchable interceptors). Change-Id: I9ee9b47b7beab55f036ffc0697ffab2583e9701c Signed-off-by: Vyacheslav Cherkashin <v.cherkashin@samsung.com>
Diffstat (limited to 'configurecompiler.cmake')
-rw-r--r--configurecompiler.cmake11
1 files changed, 11 insertions, 0 deletions
diff --git a/configurecompiler.cmake b/configurecompiler.cmake
index eb817ef6b1..423bb40129 100644
--- a/configurecompiler.cmake
+++ b/configurecompiler.cmake
@@ -300,6 +300,17 @@ elseif (CLR_CMAKE_PLATFORM_UNIX)
message(FATAL_ERROR "Unknown build type! Set CMAKE_BUILD_TYPE to DEBUG, CHECKED, RELEASE, or RELWITHDEBINFO!")
endif ()
+ if(DEFINED ENV{TIZEN_ASAN_ENVIRONMENT})
+ if (CLR_CMAKE_PLATFORM_UNIX_ARM OR CLR_CMAKE_PLATFORM_UNIX_AMD64)
+ message(STATUS "TIZEN_ASAN_ENVIRONMENT is enabled.")
+ # add definitions to enable ASan support for only external libraries (supported only Tizen)
+ add_definitions(-DTIZEN_ASAN_ENVIRONMENT -DHAS_ADDRESS_SANITIZER)
+ set(TIZEN_ASAN_ENVIRONMENT 1)
+ else()
+ message(STATUS "TIZEN_ASAN_ENVIRONMENT cannot be enabled. Current arch is not supported.")
+ endif()
+ endif()
+
# set the CLANG sanitizer flags for debug build
if(UPPERCASE_CMAKE_BUILD_TYPE STREQUAL DEBUG OR UPPERCASE_CMAKE_BUILD_TYPE STREQUAL CHECKED)
# obtain settings from running enablesanitizers.sh