aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-06-09 17:34:48 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-06-09 17:34:48 +0000
commit30abb4102516a29358ee08b493ce2723d64fb80e (patch)
treebfe0b919200cad03b241777f5d1b118655e7eec8
parent70538417927b09af1ae85d67573d054a0acb5b23 (diff)
replaced -export_dynamic with --export-dynamic and -Wl,--export-dynamic whereHEADsvn2git-headexternals/k_cext
appropriate. It seems that once upon a time -export_dynamic was a real flag. Now it means -e xport_dynamic, meaning set the entry symbol to xport_dynamic, giving this error message: /usr/bin/ld: warning: cannot find entry symbol xport_dynamic; defaulting to 0000000000001b60 svn path=/trunk/externals/k_cext/; revision=11724
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 45761d8..1ed4d0e 100644
--- a/Makefile
+++ b/Makefile
@@ -67,7 +67,7 @@ LINUXINCLUDE = -I$(LINUXINCLUDEPATH)
.c.pd_linux:
cc $(LINUXCFLAGS) $(LINUXINCLUDE) -DINCLUDEPATH=\""`pwd`"\" -DLINUXINCLUDE=\""$(LINUXINCLUDEPATH)"\" -o k_cext.o -c k_cext.c
cc $(LINUXCFLAGS) $(LINUXINCLUDE) -DINCLUDEPATH=\""`pwd`"\" -DLINUXINCLUDE=\""$(LINUXINCLUDEPATH)"\" -o k_cext_unix.o -c k_cext_unix.c
- ld -export_dynamic -shared -o k_cext.pd_linux k_cext.o k_cext_unix.o -lc -lm
+ ld --export-dynamic -shared -o k_cext.pd_linux k_cext.o k_cext_unix.o -lc -lm
strip --strip-unneeded $*.pd_linux
rm -f $*.o ../$*.pd_linux
ln -s $(DIR)/$*.pd_linux ..