diff options
-rw-r--r-- | Makefile | 2 | ||||
-rwxr-xr-x | Makefile.in | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -14,7 +14,7 @@ CPPFLAGS = -fPIC -DPD -O2 -funroll-loops -fomit-frame-pointer -ffast-math \ UNAME := $(shell uname -s) ifeq ($(UNAME),Linux) INCLUDES += `pkg-config --cflags opencv` - LDFLAGS = -export_dynamic -shared + LDFLAGS = -Wl,--export-dynamic -shared LIBS = `pkg-config --libs opencv` EXTENSION = pd_linux endif diff --git a/Makefile.in b/Makefile.in index c85b59e..50b6bc3 100755 --- a/Makefile.in +++ b/Makefile.in @@ -16,7 +16,7 @@ all: pix_preview.pd_linux pix_preview.pd_linux: pix_preview.o rm -f pix_preview.pd_linux - gcc -export_dynamic -shared -o pix_preview.pd_linux pix_preview.o $(LIBS) + gcc -Wl,--export-dynamic -shared -o pix_preview.pd_linux pix_preview.o $(LIBS) clean: rm -f *.o |