CMakeLists: Downgrade -msse4.1 to -msse3.
Virtually everyone supports SSE3 except for first-generation devices.
This commit is contained in:
parent
72897b5def
commit
2c1818ece9
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ else()
|
||||||
add_compile_options(-fno-operator-names)
|
add_compile_options(-fno-operator-names)
|
||||||
|
|
||||||
if (ARCHITECTURE_x86_64)
|
if (ARCHITECTURE_x86_64)
|
||||||
add_compile_options(-msse4.1)
|
add_compile_options(-msse3)
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue