diff options
author | Benjamin Segovia <segovia.benjamin@gmail.com> | 2012-04-09 03:59:54 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-08-10 16:16:12 -0700 |
commit | f5fae169e9b1e5b62d3671095da85d94ff3cadef (patch) | |
tree | 6ae674c65bb0a15c1420f34c04bf396db2993edd /backend/CMakeLists.txt | |
parent | 66013177375c1614cb30c335fc5769df5eabe18d (diff) |
Started to implement the vector library for the c++ backend
Diffstat (limited to 'backend/CMakeLists.txt')
-rw-r--r-- | backend/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/CMakeLists.txt b/backend/CMakeLists.txt index 57e6e18c..2da62c72 100644 --- a/backend/CMakeLists.txt +++ b/backend/CMakeLists.txt @@ -55,7 +55,7 @@ if (CMAKE_SYSTEM_NAME STREQUAL "Linux") endif (NOT GBE_COMPILE_UTESTS) if (COMPILER STREQUAL "GCC") - set (CMAKE_C_CXX_FLAGS "${CMAKE_C_CXX_FLAGS} -Wstrict-aliasing=2 -fstrict-aliasing -msse2 -ffast-math -fPIC -Wall") + set (CMAKE_C_CXX_FLAGS "${CMAKE_C_CXX_FLAGS} -funroll-loops -Wstrict-aliasing=2 -fstrict-aliasing -msse2 -msse3 -mssse3 -msse4.1 -ffast-math -fPIC -Wall") set (CMAKE_CXX_FLAGS "${CMAKE_C_CXX_FLAGS} -Wno-invalid-offsetof -fno-rtti -std=c++0x") set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${GBE_DEBUG_MEMORY_FLAG}") set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${GBE_COMPILE_UTESTS_FLAG}") |