From 2c1818ece9a627ed82e51e21ea319648f5221d8d Mon Sep 17 00:00:00 2001 From: MerryMage Date: Sun, 11 Sep 2016 08:38:44 +0100 Subject: [PATCH] CMakeLists: Downgrade -msse4.1 to -msse3. Virtually everyone supports SSE3 except for first-generation devices. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7cd4612e..9ea0757c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -50,7 +50,7 @@ else() add_compile_options(-fno-operator-names) if (ARCHITECTURE_x86_64) - add_compile_options(-msse4.1) + add_compile_options(-msse3) endif() endif()