mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Add -mfpmath=sse to CMakeLists.txt
Only affects x86+32bit+gcc combo.
This commit is contained in:
parent
f03dc23dfa
commit
0fa134a1ea
1 changed files with 4 additions and 0 deletions
|
@ -368,6 +368,10 @@ if(NOT MSVC)
|
|||
if(X86 OR X86_64)
|
||||
# enable sse2 code generation
|
||||
add_definitions(-msse2)
|
||||
if(NOT X86_64 AND NOT CLANG)
|
||||
add_definitions(-mfpmath=sse)
|
||||
# add_definitions(-mstackrealign)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(IOS)
|
||||
|
|
Loading…
Add table
Reference in a new issue