aboutsummaryrefslogtreecommitdiff
path: root/cmake/compiler/icc
diff options
context:
space:
mode:
authorclick <click@gonnamakeyou.com>2012-03-27 02:27:12 +0200
committerclick <click@gonnamakeyou.com>2012-03-27 02:27:12 +0200
commit6afaed4a02ff5e29510a9e1afffea803e02f3d69 (patch)
treeba681f09b45e1a30f2221d01a3010250bed0cb7e /cmake/compiler/icc
parenta92820b51c791595676805396a599fa345d58db2 (diff)
Core: Remove the MersenneTwiser-library (SFMT is now considered stable enough for full deployment)
Diffstat (limited to 'cmake/compiler/icc')
-rw-r--r--cmake/compiler/icc/settings.cmake11
1 files changed, 4 insertions, 7 deletions
diff --git a/cmake/compiler/icc/settings.cmake b/cmake/compiler/icc/settings.cmake
index 0e614ef97f8..b7e4cb742b3 100644
--- a/cmake/compiler/icc/settings.cmake
+++ b/cmake/compiler/icc/settings.cmake
@@ -1,13 +1,10 @@
# Set build-directive (used in core to tell which buildtype we used)
add_definitions(-D_BUILD_DIRECTIVE="${CMAKE_BUILD_TYPE}")
-if( USE_SFMT)
- if(PLATFORM EQUAL 32)
- add_definitions(-axSSE2)
- else()
- add_definitions(-xSSE2)
- endif()
- message(STATUS "ICC: SFMT enabled, SSE2 flags forced")
+if(PLATFORM EQUAL 32)
+ add_definitions(-axSSE2)
+else()
+ add_definitions(-xSSE2)
endif()
if( WITH_WARNINGS )