Merge branch 'master-use-sse3' into 'master'

Use SSE3 in 32-bit x86 binaries

See merge request STJr/SRB2!1213
This commit is contained in:
James R 2020-11-01 22:47:36 -05:00
commit d7335469eb
2 changed files with 2 additions and 1 deletions

View File

@ -549,6 +549,7 @@ if(${SRB2_CONFIG_USEASM})
endif()
set(SRB2_USEASM ON)
add_definitions(-DUSEASM)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -msse3 -mfpmath=sse")
else()
set(SRB2_USEASM OFF)
add_definitions(-DNONX86 -DNORUSEASM)

View File

@ -277,7 +277,7 @@ OPTS += -DCOMPVERSION
ifndef NONX86
ifndef GCC29
ARCHOPTS?=-march=pentium
ARCHOPTS?=-msse3 -mfpmath=sse
else
ARCHOPTS?=-mpentium
endif