cmake: Don't add xsave flag

This commit is contained in:
TellowKrinkle 2020-08-30 21:15:22 -05:00 committed by Kojin
parent 19f2d96d06
commit a1bf677514
1 changed files with 2 additions and 2 deletions

View File

@ -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()