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:
authorJan Kotas <jkotas@microsoft.com>2016-06-05 07:51:43 +0300
committerJan Kotas <jkotas@microsoft.com>2016-06-05 07:51:43 +0300
commit19cd48aa811dfc432d429d3ddc8d13a0da607ecb (patch)
tree91bb57d62d67905c99281bb839413eac9254277a /src/Native/Runtime/CMakeLists.txt
parent6a5ce31a85db741159ef06df9eb2e8c4fe0064e7 (diff)
Implement alloc helpers for Unix (#1360)
These helpers have to be implemented in assembly for non-portable runtime flavor to make stackcrawling work.
Diffstat (limited to 'src/Native/Runtime/CMakeLists.txt')
-rw-r--r--src/Native/Runtime/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Native/Runtime/CMakeLists.txt b/src/Native/Runtime/CMakeLists.txt
index a3ad94a15..f31b30aad 100644
--- a/src/Native/Runtime/CMakeLists.txt
+++ b/src/Native/Runtime/CMakeLists.txt
@@ -79,7 +79,6 @@ if(WIN32)
list(APPEND RUNTIME_SOURCES_ARCH_ASM
${ARCH_SOURCES_DIR}/GC.${ASM_SUFFIX}
- ${ARCH_SOURCES_DIR}/AllocFast.${ASM_SUFFIX}
)
else()
@@ -104,6 +103,7 @@ else()
endif()
list(APPEND RUNTIME_SOURCES_ARCH_ASM
+ ${ARCH_SOURCES_DIR}/AllocFast.${ASM_SUFFIX}
${ARCH_SOURCES_DIR}/ExceptionHandling.${ASM_SUFFIX}
${ARCH_SOURCES_DIR}/Interlocked.${ASM_SUFFIX}
${ARCH_SOURCES_DIR}/ManagedCalloutThunk.${ASM_SUFFIX}