aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gcc.rb
diff options
context:
space:
mode:
authorMartin Afanasjew2015-04-10 00:52:42 +0200
committerMike McQuaid2015-04-12 21:44:44 -0700
commit37228c4cb658834695dfa38d5067b84a15021908 (patch)
treef8d53ddb0cb496cf6cf3d95f3106c7183017496c /Library/Formula/gcc.rb
parentf07a718a00caf0349b4ccdec5328ccb582cf8bfe (diff)
downloadhomebrew-37228c4cb658834695dfa38d5067b84a15021908.tar.bz2
gcc: Work around broken bootstrap with Xcode 6.3
Closes #38596. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula/gcc.rb')
-rw-r--r--Library/Formula/gcc.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/Library/Formula/gcc.rb b/Library/Formula/gcc.rb
index 244b2aae6..474b984b7 100644
--- a/Library/Formula/gcc.rb
+++ b/Library/Formula/gcc.rb
@@ -101,6 +101,9 @@ class Gcc < Formula
"--enable-stage1-checking",
"--enable-checking=release",
"--enable-lto",
+ # Use 'bootstrap-debug' build configuration to force stripping of object
+ # files prior to comparison during bootstrap (broken by Xcode 6.3).
+ "--with-build-config=bootstrap-debug",
# A no-op unless --HEAD is built because in head warnings will
# raise errors. But still a good idea to include.
"--disable-werror",