mirror of https://github.com/PCSX2/pcsx2.git
cmake: Don't add xsave flag
This commit is contained in:
parent
19f2d96d06
commit
a1bf677514
|
@ -193,13 +193,13 @@ if(${PCSX2_TARGET_ARCHITECTURES} MATCHES "i386")
|
|||
if (USE_ICC)
|
||||
set(ARCH_FLAG "-msse2")
|
||||
else()
|
||||
set(ARCH_FLAG "-msse -msse2 -mfxsr -mxsave -march=i686")
|
||||
set(ARCH_FLAG "-msse -msse2 -mfxsr -march=i686")
|
||||
endif()
|
||||
else()
|
||||
# AVX requires some fix of the ABI (mangling) (default 2)
|
||||
# Note: V6 requires GCC 4.7
|
||||
#set(ARCH_FLAG "-march=native -fabi-version=6")
|
||||
set(ARCH_FLAG "-mfxsr -mxsave -march=native")
|
||||
set(ARCH_FLAG "-mfxsr -march=native")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
|
|
Loading…
Reference in New Issue