From cebb4cff7e883b3409e1432734046626372a2c3c Mon Sep 17 00:00:00 2001 From: Slava Barinov Date: Mon, 21 Jun 2021 17:21:47 +0300 Subject: [PATCH] [Tizen] Disable staticfilehost for ASan build Static binary is not supported by libasansi.so Signed-off-by: Slava Barinov --- src/coreclr/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coreclr/CMakeLists.txt b/src/coreclr/CMakeLists.txt index 4aaad57..77bd6c7 100644 --- a/src/coreclr/CMakeLists.txt +++ b/src/coreclr/CMakeLists.txt @@ -69,7 +69,7 @@ include(components.cmake) #--------------------------- # Build the single file host #--------------------------- -if(NOT CLR_CROSS_COMPONENTS_BUILD) +if(NOT CLR_CROSS_COMPONENTS_BUILD AND NOT TIZEN_ASAN_ENVIRONMENT) set(CLR_SINGLE_FILE_HOST_ONLY 1) add_subdirectory(${CLR_SRC_NATIVE_DIR}/corehost/apphost/static Corehost.Static) add_dependencies(runtime singlefilehost) -- 2.7.4