From e0281e0458606e9f8ef5fb171db4e593a9eff6da Mon Sep 17 00:00:00 2001 From: Ryan Schmidt Date: Mon, 21 Feb 2022 16:43:52 -0600 Subject: [PATCH] Makefile: Do not require -O optimization -O is already specified in the default CFLAGS. Do not override other optimization flags the user might have specified in CFLAGS. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 507d894..62551fc 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ $(DYNAMIC): $(OBJECT) -install_name $(LIBDIR)/$@ $(PRELOAD): $(SOURCE) $(DEPEND) - clang -shared $(CFLAGS) -DVECLIBFORT_INTERPOSE -o $@ -O $(SOURCE) \ + clang -shared $(CFLAGS) -DVECLIBFORT_INTERPOSE -o $@ $(SOURCE) \ -Wl,-reexport_framework -Wl,Accelerate \ -install_name $(LIBDIR)/$@