diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2009-01-13 15:59:14 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2009-01-13 15:59:14 +0000 |
commit | f1e982bb1cd760e92d6c0ace3c9addb27219662a (patch) | |
tree | cac72fc8052aef686d197250e112b5e39034ceb5 | |
parent | a38f86e038a17e21e3c193e8db664bba613db46d (diff) |
added "-fPIC" for 64bit compatibility
svn path=/trunk/externals/miXed/; revision=10528
-rw-r--r-- | Makefile.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common index be418ef..26a8457 100644 --- a/Makefile.common +++ b/Makefile.common @@ -37,7 +37,7 @@ X_SUFFIX = pd_linux CC = gcc LFLAGS = -export_dynamic -shared # FIXME strict-aliasing -OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer -fno-strict-aliasing +OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer -fno-strict-aliasing -fPIC ifeq ($(MY_NAME),krzYszcz) DEFINES = -DUNIX -DKRZYSZCZ else |