diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-06-18 13:49:01 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-06-18 13:49:01 +0000 |
commit | 5b3ce2fcc9b4cc1ec3822492975a7ae22aa75d9c (patch) | |
tree | d864c7b1883746d9046fa2d0b70d38f2956a796e /Makefile | |
parent | 965d9b51335e3b7cbd1ac3599cab45fcd71ef581 (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
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |