From 6bc31a00237798a755ff7de4311459ff3f318ffd Mon Sep 17 00:00:00 2001 From: Gauvain 'GovanifY' Roussel-Tarbouriech Date: Mon, 29 Mar 2021 07:57:40 +0200 Subject: [PATCH] cmake: make sse4 default --- plugins/GSdx/CMakeLists.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/GSdx/CMakeLists.txt b/plugins/GSdx/CMakeLists.txt index d370c95cf5..ac97b581ad 100644 --- a/plugins/GSdx/CMakeLists.txt +++ b/plugins/GSdx/CMakeLists.txt @@ -270,9 +270,7 @@ if(BUILTIN_GS) else() if (DISABLE_ADVANCE_SIMD) # Don't append -SSE2 on the first build to keep same name as SIMD build - add_pcsx2_plugin("${Output}" "${GSdxFinalSources}" "${GSdxFinalLibs}" "${GSdxFinalFlags}") - add_pcsx2_plugin("${Output}-SSE4" "${GSdxFinalSources}" "${GSdxFinalLibs}" "${GSdxFinalFlags} -mssse3 -msse4 -msse4.1") - target_compile_features("${Output}-SSE4" PRIVATE cxx_std_17) + add_pcsx2_plugin("${Output}" "${GSdxFinalSources}" "${GSdxFinalLibs}" "${GSdxFinalFlags} -msse3 -msse4 -msse4.1") add_pcsx2_plugin("${Output}-AVX2" "${GSdxFinalSources}" "${GSdxFinalLibs}" "${GSdxFinalFlags} -mavx -mavx2 -mbmi -mbmi2") target_compile_features("${Output}-AVX2" PRIVATE cxx_std_17) else()