diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2009-06-09 17:34:48 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2009-06-09 17:34:48 +0000 |
commit | cc112f26ab845d0550e329e52bedb5e06748b859 (patch) | |
tree | 8a4997412cf21a706532ec6c733d7ce5d196381f /makefile | |
parent | d5ed823f5946fe8457cb584bcaaad5b7a03938f7 (diff) |
replaced -export_dynamic with --export-dynamic and -Wl,--export-dynamic where
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/pdogg/; revision=11724
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -85,7 +85,7 @@ LINUXEXTERNALS = oggamp~.o oggcast~.o oggread~.o oggwrite~.o cc $(LINUXCFLAGS) $(LINUXINCLUDE) -c oggread~/oggread~.c
cc $(LINUXCFLAGS) $(LINUXINCLUDE) -c oggwrite~/oggwrite~.c
cc $(LINUXCFLAGS) $(LINUXINCLUDE) -c $*.c
- ld -export_dynamic -shared -o $*.pd_linux $*.o $(LINUXEXTERNALS) -lc \
+ ld --export-dynamic -shared -o $*.pd_linux $*.o $(LINUXEXTERNALS) -lc \
-lm -L/usr/local/lib -lvorbisfile -lvorbisenc -lvorbis -logg
strip --strip-unneeded $*.pd_linux
|