Add -O3 flags back to gcc compilation.

This commit is contained in:
Aloshi 2014-04-12 15:14:40 -05:00
parent ac0bdb47ed
commit 11f19a80d3

View file

@ -83,8 +83,8 @@ if(CMAKE_COMPILER_IS_GNUCXX)
message(SEND_ERROR "You need at least G++ 4.7 to compile EmulationStation!")
endif()
#set up compiler flags for GCC
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wno-attributes") #support C++11 for std::, optimize
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -s") #strip binary
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wno-attributes -O3") #support C++11 for std::, optimize
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -O3") #-s = strip binary
endif()
if(${GLSystem} MATCHES "Desktop OpenGL")