From a51ecb61e8a82053c8cb0153f9d0735e443128fb Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 7 Sep 2019 20:50:47 +0100 Subject: [PATCH] Don't set SSE flags in the Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 483fb9b..095ea9a 100644 --- a/Makefile +++ b/Makefile @@ -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 @@ -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