homebrew-core/Formula/gmp.rb
Adam Vandenberg e1bb919734 Add "fails_with_llvm" to formula to document LLVM build breaks.
Replaced ENV.gcc_4_2 + comments with calls to "fails_with_llvm",
to specifically message to the user when a formula is known or suspected
to not build with LLVM. If the user specifies "--use-llvm", the message
will be displayed, but compilation will be tried anyway.

Since using LLVM is now an advanced/hidden feature instead of the
default on 10.6, we'll let the user try anyway (and submit patches
if things are now working.)
2010-06-16 11:50:36 -07:00

38 lines
1,020 B
Ruby

require 'formula'
class Gmp <Formula
url 'ftp://ftp.gnu.org/gnu/gmp/gmp-5.0.1.tar.bz2'
homepage 'http://gmplib.org/'
sha1 '6340edc7ceb95f9015a758c7c0d196eb0f441d49'
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."]
]
end
def install
fails_with_llvm "On OS X 10.6, some tests fail under LLVM"
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
end
system "./configure", *args
system "make"
ENV.j1 # Don't install in parallel
system "make install"
# Different compilers and options can cause tests to fail even
# if everything compiles, so yes, we want to do this step.
system "make check" unless ARGV.include? "--skip-check"
end
end