summaryrefslogtreecommitdiff
path: root/clrfeatures.cmake
diff options
context:
space:
mode:
authorSteve MacLean <sdmaclea.qdt@qualcommdatacenter.com>2017-09-27 13:38:05 -0400
committerJan Vorlicek <janvorli@microsoft.com>2017-09-27 19:38:05 +0200
commitfa30eeba02ad0a5ffeb1122467c5cb47bac285a8 (patch)
treee9f32c2ac1130bc51e93c96e2ebd6703b3631609 /clrfeatures.cmake
parent00e7aa00a42debda47a7dbe2b54e924670eaefdd (diff)
downloadcoreclr-fa30eeba02ad0a5ffeb1122467c5cb47bac285a8.tar.gz
coreclr-fa30eeba02ad0a5ffeb1122467c5cb47bac285a8.tar.bz2
coreclr-fa30eeba02ad0a5ffeb1122467c5cb47bac285a8.zip
[ARM64/Unix] Enable FEATURE_EVENT_TRACE (#14176)
* [ARM64/Unix] Enable FEATURE_EVENT_TRACE * [Arm64] Remove _PlatformDoesNotSupportEventTrace
Diffstat (limited to 'clrfeatures.cmake')
-rw-r--r--clrfeatures.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/clrfeatures.cmake b/clrfeatures.cmake
index 4ad29e42d9..2c22a9dce1 100644
--- a/clrfeatures.cmake
+++ b/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)