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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManu <manu-silicon@users.noreply.github.com>2015-12-01 08:29:42 +0300
committerManu <manu-silicon@users.noreply.github.com>2015-12-04 05:53:48 +0300
commit7721f2896d21166e85df3b05251b094e324e5ef7 (patch)
tree18798efbc23bbe25b593f3c7b2e63a81956846c7 /src/Native/Runtime/CMakeLists.txt
parentc65337792bfc575bbfc2c9a853faa71cf97dbfe3 (diff)
Added build support for ARM64
Update cmake configuration files to support ARM64. Added skeleton of AsmMacros.h and WriteBarriers.S for ARM64.
Diffstat (limited to 'src/Native/Runtime/CMakeLists.txt')
-rw-r--r--src/Native/Runtime/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Native/Runtime/CMakeLists.txt b/src/Native/Runtime/CMakeLists.txt
index 2ce4f52f2..82427af24 100644
--- a/src/Native/Runtime/CMakeLists.txt
+++ b/src/Native/Runtime/CMakeLists.txt
@@ -81,6 +81,9 @@ else()
if(CLR_CMAKE_PLATFORM_ARCH_AMD64)
set(ARCH_SOURCES_DIR amd64)
set(ASM_SUFFIX S)
+ elseif(CLR_CMAKE_PLATFORM_ARCH_ARM64)
+ set(ARCH_SOURCES_DIR arm64)
+ set(ASM_SUFFIX S)
elseif(CLR_CMAKE_PLATFORM_ARCH_ARM)
set(ARCH_SOURCES_DIR arm)
set(ASM_SUFFIX S)