aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/gmp.rb10
1 files changed, 4 insertions, 6 deletions
diff --git a/Library/Formula/gmp.rb b/Library/Formula/gmp.rb
index d01c37ca0..9061aa3ee 100644
--- a/Library/Formula/gmp.rb
+++ b/Library/Formula/gmp.rb
@@ -1,9 +1,9 @@
require 'formula'
class Gmp < Formula
- url 'ftp://ftp.gnu.org/gnu/gmp/gmp-5.0.1.tar.bz2'
+ url 'ftp://ftp.gnu.org/gnu/gmp/gmp-5.0.2.tar.bz2'
homepage 'http://gmplib.org/'
- sha1 '6340edc7ceb95f9015a758c7c0d196eb0f441d49'
+ sha1 '2968220e1988eabb61f921d11e5d2db5431e0a35'
def options
[
@@ -12,15 +12,13 @@ class Gmp < Formula
]
end
- fails_with_llvm "Tests fail to compile; missing references in 'llvm bitcode in libtests.a(misc.o)'."
-
def install
# Reports of problems using gcc 4.0 on Leopard
# https://github.com/mxcl/homebrew/issues/issue/2302
# Also force use of 4.2 on 10.6 in case a user has changed the default
ENV.gcc_4_2
- args = ["--prefix=#{prefix}", "--infodir=#{info}", "--enable-cxx"]
+ args = ["--prefix=#{prefix}", "--enable-cxx"]
# Build 32-bit where appropriate, and help configure find 64-bit CPUs
if MacOS.prefer_64_bit? and not ARGV.include? "--32-bit"
@@ -33,7 +31,7 @@ class Gmp < Formula
system "./configure", *args
system "make"
- ENV.j1 # Don't install in parallel
+ ENV.j1 # Doesn't install in parallel on 8-core Mac Pro
system "make install"
# Different compilers and options can cause tests to fail even