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:
authorTom McDonald <tommcdon@microsoft.com>2021-04-28 03:47:56 +0300
committerGitHub <noreply@github.com>2021-04-28 03:47:56 +0300
commit9f5568993103f88b48df4aa0b6f639d64c4d0af9 (patch)
tree54fa2d2f8b280dc370b6dfce06aa294e3d392f25 /src/coreclr/clrdefinitions.cmake
parenta4d5889a82785271cb9bb0547e51f901b9f34a8d (diff)
Initial support for Hot Reload on ARM (#51902)
* Initial support for Hot Reload on ARM * AssemblyExtensionsTest fix for ARM
Diffstat (limited to 'src/coreclr/clrdefinitions.cmake')
-rw-r--r--src/coreclr/clrdefinitions.cmake3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/coreclr/clrdefinitions.cmake b/src/coreclr/clrdefinitions.cmake
index 115031ff49b..008332d3443 100644
--- a/src/coreclr/clrdefinitions.cmake
+++ b/src/coreclr/clrdefinitions.cmake
@@ -57,9 +57,8 @@ if(CLR_CMAKE_HOST_WIN32)
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
endif(CLR_CMAKE_HOST_WIN32)
-# Only enable edit and continue on x86 and x64, exclude arm & arm64
+add_compile_definitions($<$<NOT:$<BOOL:$<TARGET_PROPERTY:CROSSGEN_COMPONENT>>>:EnC_SUPPORTED>)
if(CLR_CMAKE_TARGET_ARCH_AMD64 OR CLR_CMAKE_TARGET_ARCH_I386)
- add_compile_definitions($<$<NOT:$<BOOL:$<TARGET_PROPERTY:CROSSGEN_COMPONENT>>>:EnC_SUPPORTED>)
if(CLR_CMAKE_TARGET_WIN32)
add_compile_definitions($<$<NOT:$<BOOL:$<TARGET_PROPERTY:CROSSGEN_COMPONENT>>>:FEATURE_ENC_SUPPORTED>)
endif(CLR_CMAKE_TARGET_WIN32)