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 | d3c50085a9ca1bcd03ad416c17493bdb8b5ac5ce (patch) | |
tree | dda9b88a0094f0cca3900a0fdc9d0228a0dfa66e /Makefile.common | |
parent | 09f1be6703a596737d3c97888e385f2ea238cb58 (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/miXed/; revision=11724
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common index ba40837..d185da3 100644 --- a/Makefile.common +++ b/Makefile.common @@ -35,7 +35,7 @@ default: define_build all ifeq ($(OS_NAME),Linux) X_SUFFIX = pd_linux CC = gcc -LFLAGS = -export_dynamic -shared +LFLAGS = --export-dynamic -shared # FIXME strict-aliasing OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer -fno-strict-aliasing -fPIC ifeq ($(MY_NAME),krzYszcz) |