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
commitfd3a5de530de56a9f90f5907097655bee0034336 (patch)
treed6b6952a7184eb509407e9002405658156d16e60
parente7001842641982a2698f759aa8014aacda6ce568 (diff)
replaced -export_dynamic with --export-dynamic and -Wl,--export-dynamic whereHEADsvn2git-headexternals/k_vst_
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_vst~/; revision=11724
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 08b004d..1b80322 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ LINUXINCLUDE = -I$(LINUXINCLUDEPATH) -I../../vstserver/include
cc $(LINUXCFLAGS) $(LINUXINCLUDE) -I/site/include/wine -c $(NAME).c -I../include -DPLUGIN_TILDE_USE_VST -DPLUGIN_DEBUG -DPLUGIN_TILDE_VERBOSE
cc $(LINUXCFLAGS) $(LINUXINCLUDE) -I/site/include/wine -c plugin~_vst.c -I../include -DPLUGIN_TILDE_USE_VST -DPLUGIN_DEBUG -DPLUGIN_TILDE_VERBOSE
- ld -export_dynamic k_vst~.o plugin~_vst.o -shared -o $(NAME).pd_linux -lc -lm -L/usr/local/lib -L../../vstserver -lvst
+ ld --export-dynamic k_vst~.o plugin~_vst.o -shared -o $(NAME).pd_linux -lc -lm -L/usr/local/lib -L../../vstserver -lvst
strip --strip-unneeded $*.pd_linux
rm -f $*.o ../$*.pd_linux
ln -s k_vst~/$*.pd_linux ..