Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonghyun Park <parjong@gmail.com>2017-09-27 11:54:51 +0300
committerJan Vorlicek <janvorli@microsoft.com>2017-09-27 11:54:51 +0300
commitc50abe69a0332099de23e46e9442b0c8def7662a (patch)
tree18723879bce0e0fd856f8515c6462f94d853a618 /src/coreclr/clrfeatures.cmake
parent8058b2d6c570e7043a46a2154001fec257a78baf (diff)
Permit to disable FEATURE_EVENT_TRACE on Tizen (dotnet/coreclr#14217)
Commit migrated from https://github.com/dotnet/coreclr/commit/06763844394cc40933162f31fa911ab518ed5518
Diffstat (limited to 'src/coreclr/clrfeatures.cmake')
-rw-r--r--src/coreclr/clrfeatures.cmake5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/coreclr/clrfeatures.cmake b/src/coreclr/clrfeatures.cmake
index edb042b5009..4ad29e42d9c 100644
--- a/src/coreclr/clrfeatures.cmake
+++ b/src/coreclr/clrfeatures.cmake
@@ -1,5 +1,4 @@
if(CLR_CMAKE_TARGET_TIZEN_LINUX)
- set(FEATURE_EVENT_TRACE 1)
set(FEATURE_GDBJIT_LANGID_CS 1)
endif()
@@ -14,7 +13,9 @@ if(NOT DEFINED FEATURE_EVENT_TRACE)
endif()
if(CLR_CMAKE_PLATFORM_LINUX)
- if(CLR_CMAKE_TARGET_ARCH_AMD64)
+ if(CLR_CMAKE_TARGET_TIZEN_LINUX)
+ set(FEATURE_EVENT_TRACE 1)
+ elseif(CLR_CMAKE_TARGET_ARCH_AMD64)
set(FEATURE_EVENT_TRACE 1)
elseif(CLR_CMAKE_TARGET_ARCH_ARM)
set(FEATURE_EVENT_TRACE 1)