mirror of https://github.com/PCSX2/pcsx2.git
cmake: always define avx on 64 bits build
This commit is contained in:
parent
0e2ec9c2cb
commit
8b4da69861
|
@ -234,7 +234,7 @@ elseif(${PCSX2_TARGET_ARCHITECTURES} MATCHES "x86_64")
|
||||||
if (USE_ICC)
|
if (USE_ICC)
|
||||||
set(ARCH_FLAG "-msse2")
|
set(ARCH_FLAG "-msse2")
|
||||||
else()
|
else()
|
||||||
set(ARCH_FLAG "-msse -msse2 -mfxsr")
|
set(ARCH_FLAG "-msse -msse2 -mfxsr -mssse3 -msse4.1 -mavx")
|
||||||
endif()
|
endif()
|
||||||
else()
|
else()
|
||||||
#set(ARCH_FLAG "-march=native -fabi-version=6")
|
#set(ARCH_FLAG "-march=native -fabi-version=6")
|
||||||
|
|
Loading…
Reference in New Issue