Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Merge pull request #981 from CarolEidt/EnableSIMDAndAVX
Browse files Browse the repository at this point in the history
Enable FEATURE_SIMD and FEATURE_AVX_SUPPORT in the JIT
  • Loading branch information
CarolEidt committed May 12, 2015
2 parents 6644e61 + 6376b38 commit 8e8a45d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/jit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8e8a45d

Please sign in to comment.