Browse Source

Don't use sse flags in the makefile

Code is not that heavy on audio DSP that really makes a difference
tags/v0.9.1
falkTX 5 years ago
parent
commit
38941feee8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      c++/Makefile.mk

+ 1
- 1
c++/Makefile.mk View File

@@ -24,7 +24,7 @@ BASE_FLAGS = -O0 -g -Wall -Wextra
BASE_FLAGS += -DDEBUG BASE_FLAGS += -DDEBUG
STRIP = true # FIXME STRIP = true # FIXME
else 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 BASE_FLAGS += -DNDEBUG
endif endif




Loading…
Cancel
Save