aboutsummaryrefslogtreecommitdiff
path: root/Rules.mak
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-03-21 11:06:43 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-03-21 11:06:43 +0000
commitd1ba916167d61d47c1a29dd10b1bb9f5b09a4f07 (patch)
tree7fed83eca24636a4dcef8d1e0a9a60a79198eb73 /Rules.mak
parente3f4ab2bc46f81814d98948f64471ba633a751fd (diff)
downloadbusybox-d1ba916167d61d47c1a29dd10b1bb9f5b09a4f07.tar.gz
- workaroung pr25795 in gcc-4.1
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25795
Diffstat (limited to 'Rules.mak')
-rw-r--r--Rules.mak3
1 files changed, 2 insertions, 1 deletions
diff --git a/Rules.mak b/Rules.mak
index 34c9be69e..115f3a4ab 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -131,7 +131,8 @@ ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 3 ] ; echo $$?)),0)
CFLAGS_COMBINE:=$(call check_gcc,--combine,)
endif
OPTIMIZATION+=$(call check_gcc,-funit-at-a-time,)
-PROG_CFLAGS+=$(call check_gcc,-fwhole-program,)
+# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25795
+#PROG_CFLAGS+=$(call check_gcc,-fwhole-program,)
endif # CONFIG_BUILD_AT_ONCE
LIB_LDFLAGS:=$(call check_ld,--enable-new-dtags,)