Navigation Menu

Skip to content

Commit

Permalink
Don't set SSE flags in the Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
falkTX committed Sep 7, 2019
1 parent dd8bd57 commit a51ecb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -12,7 +12,7 @@ VSTNAME=lv2vst
###############################################################################

ifeq ($(DEBUG),)
override CXXFLAGS += -msse -msse2 -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG
override CXXFLAGS += -ffast-math -fomit-frame-pointer -O3 -fno-finite-math-only -DNDEBUG
else
override CXXFLAGS += -g -O0
endif
Expand All @@ -34,7 +34,7 @@ ifeq ($(UNAME),Darwin)
else
STRIPFLAGS=-s
VSTLDFLAGS=-Wl,-Bstatic -Wl,-Bdynamic -Wl,--as-needed -shared
override CXXFLAGS += -fvisibility=hidden -fdata-sections -ffunction-sections -mfpmath=sse
override CXXFLAGS += -fvisibility=hidden -fdata-sections -ffunction-sections
ifeq ($(DEBUG),)
override LDFLAGS += -Wl,--gc-sections -Wl,-O1 -Wl,--as-needed -Wl,--strip-all
endif
Expand Down

0 comments on commit a51ecb6

Please sign in to comment.