diff options
author | Mike Danes <onemihaid@hotmail.com> | 2015-08-01 11:04:16 +0300 |
---|---|---|
committer | Mike Danes <onemihaid@hotmail.com> | 2015-08-04 11:00:34 +0300 |
commit | 8bb8ed66e4e54270e18e68c37515f21730c82cea (patch) | |
tree | a8f713371002b0a037965b4020ffd254a1de73aa /src/jit | |
parent | fd1fbb93e8435c371dea39f16c0cf6d030b8c7dd (diff) | |
download | coreclr-8bb8ed66e4e54270e18e68c37515f21730c82cea.tar.gz coreclr-8bb8ed66e4e54270e18e68c37515f21730c82cea.tar.bz2 coreclr-8bb8ed66e4e54270e18e68c37515f21730c82cea.zip |
Enable the Windows x86 build
This allows building the Windows x86 version of CoreCLR by using "x86" for the BuildArch parameter of build.cmd. Note that CMAKE_SYSTEM_PROCESSOR is no longer used in Windows builds to set IS_64BIT_BUILD.
This change is enough to get CoreCLR to build but more changes are required for it to actually run correctly. In particular, the JIT compiler support for x86 is pretty limited at this point.
Diffstat (limited to 'src/jit')
-rw-r--r-- | src/jit/CMakeLists.txt | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/jit/CMakeLists.txt b/src/jit/CMakeLists.txt index 96f11b760a..e9f84e0728 100644 --- a/src/jit/CMakeLists.txt +++ b/src/jit/CMakeLists.txt @@ -7,9 +7,9 @@ include_directories("../inc") # add_definitions(-DALT_JIT) if (WIN32) -if (IS_64BIT_BUILD EQUAL 1) +if (CLR_CMAKE_PLATFORM_ARCH_AMD64) add_definitions(-DFEATURE_SIMD -DFEATURE_AVX_SUPPORT) -endif (IS_64BIT_BUILD EQUAL 1) +endif (CLR_CMAKE_PLATFORM_ARCH_AMD64) endif (WIN32) set( JIT_SOURCES @@ -79,6 +79,13 @@ elseif(CLR_CMAKE_PLATFORM_ARCH_ARM) codegenarm.cpp unwindarm.cpp ) +elseif(CLR_CMAKE_PLATFORM_ARCH_I386) + set( ARCH_SOURCES + emitxarch.cpp + targetx86.cpp + lowerxarch.cpp + codegenxarch.cpp + ) elseif(CLR_CMAKE_PLATFORM_ARCH_ARM64) set( ARCH_SOURCES codegenarm64.cpp @@ -89,7 +96,7 @@ elseif(CLR_CMAKE_PLATFORM_ARCH_ARM64) unwindarm64.cpp ) else() - message(FATAL_ERROR "Only ARM, ARM64 and AMD64 is supported") + clr_unknown_arch() endif() set( SOURCES |