diff options
author | Jonghyun Park <parjong@gmail.com> | 2016-11-26 00:07:16 +0900 |
---|---|---|
committer | Jan Kotas <jkotas@microsoft.com> | 2016-11-25 07:07:16 -0800 |
commit | 1ce314b3f7b51081f88835e60f8516780f4894ac (patch) | |
tree | 396237e18bf057299ea0baabde8e880d690d0b26 /src/pal/src/CMakeLists.txt | |
parent | c958ed15c1a58224966b10a6c778d13aaf537469 (diff) | |
download | coreclr-1ce314b3f7b51081f88835e60f8516780f4894ac.tar.gz coreclr-1ce314b3f7b51081f88835e60f8516780f4894ac.tar.bz2 coreclr-1ce314b3f7b51081f88835e60f8516780f4894ac.zip |
[x86/Linux] Renames i386 as amd64 in arch (PAL) (#8307)
The files in src/pal/src/arch/i386 are actually for amd64 (not x86).
This commit renames the directory name as the first step towards
enabling PAL in x86/Linux.
Diffstat (limited to 'src/pal/src/CMakeLists.txt')
-rw-r--r-- | src/pal/src/CMakeLists.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/pal/src/CMakeLists.txt b/src/pal/src/CMakeLists.txt index a51fe93523..89eac35273 100644 --- a/src/pal/src/CMakeLists.txt +++ b/src/pal/src/CMakeLists.txt @@ -42,9 +42,9 @@ endif() if(CMAKE_SYSTEM_NAME STREQUAL Darwin) add_definitions(-D_TARGET_MAC64) set(PLATFORM_SOURCES - arch/i386/activationhandlerwrapper.S - arch/i386/context.S - arch/i386/dispatchexceptionwrapper.S + arch/amd64/activationhandlerwrapper.S + arch/amd64/context.S + arch/amd64/dispatchexceptionwrapper.S exception/machexception.cpp exception/machmessage.cpp ) @@ -85,10 +85,10 @@ add_compile_options(-fPIC) if(PAL_CMAKE_PLATFORM_ARCH_AMD64) set(ARCH_SOURCES - arch/i386/context2.S - arch/i386/debugbreak.S - arch/i386/exceptionhelper.S - arch/i386/processor.cpp + arch/amd64/context2.S + arch/amd64/debugbreak.S + arch/amd64/exceptionhelper.S + arch/amd64/processor.cpp ) elseif(PAL_CMAKE_PLATFORM_ARCH_ARM) set(ARCH_SOURCES @@ -109,7 +109,7 @@ elseif(CLR_CMAKE_PLATFORM_ARCH_I386) #arch/i386/context2.S #arch/i386/debugbreak.S #arch/i386/exceptionhelper.S - arch/i386/processor.cpp + arch/amd64/processor.cpp ) endif() |