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
commitd3c50085a9ca1bcd03ad416c17493bdb8b5ac5ce (patch)
treedda9b88a0094f0cca3900a0fdc9d0228a0dfa66e
parent09f1be6703a596737d3c97888e385f2ea238cb58 (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
-rw-r--r--Makefile.common2
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)