Fix compiler option

This commit is contained in:
Robin Gareus 2022-11-08 09:45:56 +01:00
parent 8852890bc8
commit 800eab97f3
No known key found for this signature in database
GPG Key ID: A090BCE02CF57F04
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ ifneq (,$(findstring 86,$(MACHINE)))
endif
ifeq ($(HAVE_SSE),yes)
OPTIMIZATIONS ?= -msse -msse2 -mfpmath=sse --fast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG
OPTIMIZATIONS ?= -msse -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG
else
OPTIMIZATIONS ?= -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG
endif