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:
authorSteve MacLean <sdmaclea.qdt@qualcommdatacenter.com>2017-09-27 20:38:05 +0300
committerJan Vorlicek <janvorli@microsoft.com>2017-09-27 20:38:05 +0300
commit31cf9cafeb8e6b062d9de0387cf3492b63051c5a (patch)
treee2f45f10171ea953c7f8b811bac7bb9735150717 /src/coreclr/clrfeatures.cmake
parent92d216ee95a74679ebd3ba33cd16031604967f74 (diff)
[ARM64/Unix] Enable FEATURE_EVENT_TRACE (dotnet/coreclr#14176)
* [ARM64/Unix] Enable FEATURE_EVENT_TRACE * [Arm64] Remove _PlatformDoesNotSupportEventTrace Commit migrated from https://github.com/dotnet/coreclr/commit/fa30eeba02ad0a5ffeb1122467c5cb47bac285a8
Diffstat (limited to 'src/coreclr/clrfeatures.cmake')
-rw-r--r--src/coreclr/clrfeatures.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/coreclr/clrfeatures.cmake b/src/coreclr/clrfeatures.cmake
index 4ad29e42d9c..2c22a9dce15 100644
--- a/src/coreclr/clrfeatures.cmake
+++ b/src/coreclr/clrfeatures.cmake
@@ -19,6 +19,8 @@ if(NOT DEFINED FEATURE_EVENT_TRACE)
set(FEATURE_EVENT_TRACE 1)
elseif(CLR_CMAKE_TARGET_ARCH_ARM)
set(FEATURE_EVENT_TRACE 1)
+ elseif(CLR_CMAKE_TARGET_ARCH_ARM64)
+ set(FEATURE_EVENT_TRACE 1)
endif()
endif(CLR_CMAKE_PLATFORM_LINUX)
endif(NOT DEFINED FEATURE_EVENT_TRACE)