aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2010-10-17 16:31:01 -0700
committerAdam Vandenberg2010-10-17 16:31:01 -0700
commitdd2cedcf29e405f76838fe02af0739b390710af0 (patch)
tree27ed842e152b737d0673ce3f5a549d291a820429
parentd995eb7d5d256c7b13bb7ecea510e08f90aba54e (diff)
downloadhomebrew-dd2cedcf29e405f76838fe02af0739b390710af0.tar.bz2
gmp - force GCC 4.2. Fixes #2302
-rw-r--r--Library/Formula/gmp.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/Library/Formula/gmp.rb b/Library/Formula/gmp.rb
index a37d4fd23..432446508 100644
--- a/Library/Formula/gmp.rb
+++ b/Library/Formula/gmp.rb
@@ -13,6 +13,10 @@ class Gmp <Formula
end
def install
+ # Reports of problems using gcc 4.0 on Leopard
+ # http://github.com/mxcl/homebrew/issues/issue/2302
+ ENV.gcc_4_2 if MACOS_VERSION < 10.6
+
fails_with_llvm "Tests fail to compile; missing references in 'llvm bitcode in libtests.a(misc.o)'."
args = ["--prefix=#{prefix}", "--infodir=#{info}", "--enable-cxx"]