diff options
| author | Martin Afanasjew | 2015-04-10 00:52:42 +0200 | 
|---|---|---|
| committer | Mike McQuaid | 2015-04-12 21:44:44 -0700 | 
| commit | 37228c4cb658834695dfa38d5067b84a15021908 (patch) | |
| tree | f8d53ddb0cb496cf6cf3d95f3106c7183017496c /Library/Formula/gcc.rb | |
| parent | f07a718a00caf0349b4ccdec5328ccb582cf8bfe (diff) | |
| download | homebrew-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.rb | 3 | 
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",  | 
