aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-06-18 13:49:01 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-06-18 13:49:01 +0000
commit5b3ce2fcc9b4cc1ec3822492975a7ae22aa75d9c (patch)
treed864c7b1883746d9046fa2d0b70d38f2956a796e
parent965d9b51335e3b7cbd1ac3599cab45fcd71ef581 (diff)
replaced typo'ed ---export-dynamic flag with gcc flag -rdynamic, which sets -export-dynamic when calling ld
svn path=/trunk/externals/pdp/; revision=15107
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f3e92a2..445a2a5 100644
--- a/Makefile
+++ b/Makefile
@@ -26,11 +26,11 @@ darwin: pdp_all
linux: pdp_all
rm -f pdp.pd_linux
- $(CC) ---export-dynamic -shared -o pdp.pd_linux modules/*/*.o system/pdp.o system/*/*.o puredata/*.o $(PDP_LIBS)
+ $(CC) -rdynamic -shared -o pdp.pd_linux modules/*/*.o system/pdp.o system/*/*.o puredata/*.o $(PDP_LIBS)
linux_mmx: pdp_all
rm -f pdp.pd_linux
- $(CC) ---export-dynamic -shared -o pdp.pd_linux modules/*/*.o system/pdp.o system/*/*.o puredata/*.o $(PDP_LIBS)
+ $(CC) -rdynamic -shared -o pdp.pd_linux modules/*/*.o system/pdp.o system/*/*.o puredata/*.o $(PDP_LIBS)
buildclean:
make -C include clean