summaryrefslogtreecommitdiff
path: root/Rules.mak
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-10-29 00:45:47 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-10-29 00:45:47 +0000
commit8789ec41345596c152501877a26a5eac0a577554 (patch)
tree3ae8b072c82cf38ee417d3332e0c1e7782ddda7b /Rules.mak
parentf48c471eecd1a7790b5e54f35cdcf16e736aebb2 (diff)
Add configure option to allow IMA compiling
Diffstat (limited to 'Rules.mak')
-rw-r--r--Rules.mak6
1 files changed, 5 insertions, 1 deletions
diff --git a/Rules.mak b/Rules.mak
index 0e4e9aa3c..55fee0cbc 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -312,6 +312,7 @@ else
LDFLAGS := $(LDFLAGS_NOSTRIP) -s
endif
+ifeq ($(DOMULTI),y)
# we try to compile all sources at once into an object (IMA), but
# gcc-3.3.x does not support it
# gcc-3.4.x supports it, but does not need and support --combine
@@ -319,10 +320,13 @@ endif
# gcc-4.1(200506xx) supports it, but needs the --combine flag, else libs are useless
GCC_VER?=$(shell $(CC) -dumpversion | cut -d . -f 1,2)
ifeq ($(GCC_VER),3.3)
-DOMULTI=n
+DOMULTI:=n
else
CFLAGS+=$(call check_gcc,--combine,)
endif
+else
+DOMULTI:=n
+endif
ifeq ($(UCLIBC_HAS_THREADS),y)
ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)