Don't use sse flags in the makefile

Code is not that heavy on audio DSP that really makes a difference
This commit is contained in:
falkTX 2019-09-18 11:33:32 +01:00
parent 4a5f5b445b
commit 38941feee8
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ BASE_FLAGS = -O0 -g -Wall -Wextra
BASE_FLAGS += -DDEBUG
STRIP = true # FIXME
else
BASE_FLAGS = -O3 -ffast-math -mtune=generic -msse -mfpmath=sse -Wall -Wextra
BASE_FLAGS = -O3 -ffast-math -mtune=generic -Wall -Wextra
BASE_FLAGS += -DNDEBUG
endif