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 | b12a1329bbf33dcd5aadb83cee8e2bce8529bd78 (patch) | |
tree | 68e672e8a87c081e4c6df34149aa04b7bfed8c40 | |
parent | 3ef83bebe6152ad488d9daa6365758b0636b6e03 (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/iem/aconnect/; revision=11724
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ LD = ld STRIP = strip --strip-unneeded AFLAGS = -LFLAGS = -export_dynamic -shared +LFLAGS = --export-dynamic -shared WFLAGS = MAKEDEP_FLAGS = -MM |