aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xMakefile4
-rwxr-xr-xMakefile.advanced2
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 0c01a32..6e7bdf8 100755
--- a/Makefile
+++ b/Makefile
@@ -33,7 +33,7 @@ LINUXINCLUDE = -I../../src
.c.pd_linux:
cc -O2 -Wall -DPD -fPIC $(LINUXCFLAGS) $(LINUXINCLUDE) -c $*.c
- ld -export_dynamic -shared -o $*.pd_linux $*.o -lc
+ ld --export-dynamic -shared -o $*.pd_linux $*.o -lc
strip --strip-unneeded $*.pd_linux
install_linux:
@@ -72,7 +72,7 @@ install_nt:
pd_xp:
gcc -O2 -Wall -DPD -L$(LIBPATH) -c $(NAME).c
- ld -export_dynamic -shared -o $(NAME).dll -lc
+ ld --export-dynamic -shared -o $(NAME).dll -lc
install_xp:
diff --git a/Makefile.advanced b/Makefile.advanced
index 401e5db..fb48ca9 100755
--- a/Makefile.advanced
+++ b/Makefile.advanced
@@ -92,7 +92,7 @@ LINUXINCLUDE = -I../../src
.c.pd_linux:
cc -O2 -Wall -DPD -fPIC $(LINUXCFLAGS) $(LINUXINCLUDE) -c $*.c
- ld -export_dynamic -shared -o $*.pd_linux $*.o -lc
+ ld --export-dynamic -shared -o $*.pd_linux $*.o -lc
strip --strip-unneeded $*.pd_linux
# ----------------------------------------------------------