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