diff options
author | Carol Eidt <carol.eidt@microsoft.com> | 2015-05-12 15:28:50 -0700 |
---|---|---|
committer | Carol Eidt <carol.eidt@microsoft.com> | 2015-05-12 15:28:50 -0700 |
commit | 8e8a45dffb06412c26699bb41632fc75fe932c8f (patch) | |
tree | 9c354c44d0501036d50ab4c8b2bd6ee919f4673f /src | |
parent | 6644e6197119e4f437c08126eaa8579c7f252d08 (diff) | |
parent | 6376b38a6fc8a7fc379201bf3a3ac09d92cf34a9 (diff) | |
download | coreclr-8e8a45dffb06412c26699bb41632fc75fe932c8f.tar.gz coreclr-8e8a45dffb06412c26699bb41632fc75fe932c8f.tar.bz2 coreclr-8e8a45dffb06412c26699bb41632fc75fe932c8f.zip |
Merge pull request #981 from CarolEidt/EnableSIMDAndAVX
Enable FEATURE_SIMD and FEATURE_AVX_SUPPORT in the JIT
Diffstat (limited to 'src')
-rw-r--r-- | src/jit/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/jit/CMakeLists.txt b/src/jit/CMakeLists.txt index b1c3e09658..69a3fa371c 100644 --- a/src/jit/CMakeLists.txt +++ b/src/jit/CMakeLists.txt @@ -6,6 +6,12 @@ include_directories("../inc") # Enable the following for UNIX altjit on Windows # add_definitions(-DALT_JIT) +if (WIN32) +if (IS_64BIT_BUILD EQUAL 1) + add_definitions(-DFEATURE_SIMD -DFEATURE_AVX_SUPPORT) +endif (IS_64BIT_BUILD EQUAL 1) +endif (WIN32) + set( SOURCES alloc.cpp bitset.cpp |