aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/gmp.rb18
1 files changed, 8 insertions, 10 deletions
diff --git a/Library/Formula/gmp.rb b/Library/Formula/gmp.rb
index 3d765ac01..a37d4fd23 100644
--- a/Library/Formula/gmp.rb
+++ b/Library/Formula/gmp.rb
@@ -7,23 +7,21 @@ class Gmp <Formula
def options
[
- ["--skip-check", "Do not run 'make check' to verify libraries. (Not recommended.)"],
- ["--32-bit", "Force 32-bit on Leopard on 64-bit machines."]
+ ["--32-bit", "Force 32-bit."],
+ ["--skip-check", "Do not run 'make check' to verify libraries."]
]
end
def install
- fails_with_llvm "On OS X 10.6, some tests fail under LLVM"
+ fails_with_llvm "Tests fail to compile; missing references in 'llvm bitcode in libtests.a(misc.o)'."
args = ["--prefix=#{prefix}", "--infodir=#{info}", "--enable-cxx"]
- if MACOS_VERSION == 10.5
- if Hardware.is_32_bit? or ARGV.include? "--32-bit"
- ENV.m32
- args << "--host=none-apple-darwin"
- else
- ENV.m64
- end
+ if Hardware.is_32_bit? or ARGV.include? "--32-bit"
+ ENV.m32
+ args << "--host=none-apple-darwin"
+ else
+ ENV.m64
end
system "./configure", *args