From 5b3ce2fcc9b4cc1ec3822492975a7ae22aa75d9c Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Sat, 18 Jun 2011 13:49:01 +0000 Subject: replaced typo'ed ---export-dynamic flag with gcc flag -rdynamic, which sets -export-dynamic when calling ld svn path=/trunk/externals/pdp/; revision=15107 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.1