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 Vorlicek <janvorli@microsoft.com>2016-05-04 18:36:45 +0300
committerJan Vorlicek <janvorli@microsoft.com>2016-05-05 23:44:05 +0300
commit77022787c3457c0daf776ab7f9ea6d1531e3dad1 (patch)
tree6ba672fa9af35cf61459302f564079d454041a76 /src/Native/Runtime/CMakeLists.txt
parent54df7b40e4955d9ed5f2b441f4fd1cc3992fc78d (diff)
Implement Unix AMD64 EH assembler helpers
This change ports AMD64 ExceptionHandling.asm and ManagedCalloutThunk.asm to Unix.
Diffstat (limited to 'src/Native/Runtime/CMakeLists.txt')
-rw-r--r--src/Native/Runtime/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Native/Runtime/CMakeLists.txt b/src/Native/Runtime/CMakeLists.txt
index cdfce4b3c..d491292c8 100644
--- a/src/Native/Runtime/CMakeLists.txt
+++ b/src/Native/Runtime/CMakeLists.txt
@@ -80,8 +80,6 @@ if(WIN32)
list(APPEND RUNTIME_SOURCES_ARCH_ASM
${ARCH_SOURCES_DIR}/GC.${ASM_SUFFIX}
${ARCH_SOURCES_DIR}/AllocFast.${ASM_SUFFIX}
- ${ARCH_SOURCES_DIR}/ExceptionHandling.${ASM_SUFFIX}
- ${ARCH_SOURCES_DIR}/ManagedCalloutThunk.${ASM_SUFFIX}
)
else()
@@ -106,6 +104,8 @@ else()
endif()
list(APPEND RUNTIME_SOURCES_ARCH_ASM
+ ${ARCH_SOURCES_DIR}/ExceptionHandling.${ASM_SUFFIX}
+ ${ARCH_SOURCES_DIR}/ManagedCalloutThunk.${ASM_SUFFIX}
${ARCH_SOURCES_DIR}/WriteBarriers.${ASM_SUFFIX}
${ARCH_SOURCES_DIR}/Interlocked.${ASM_SUFFIX}
${ARCH_SOURCES_DIR}/StubDispatch.${ASM_SUFFIX}