homebrew-core/Formula/llvm.rb

116 lines
3.3 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Llvm < Formula
homepage 'http://llvm.org/'
2014-05-15 19:07:39 +00:00
bottle do
2014-09-21 23:23:30 +00:00
sha1 "1fc5969edc5fcffbb3e958da00ff6a1c70606262" => :mavericks
sha1 "c30d6cc49521fb950bd76390878c9469a780b981" => :mountain_lion
sha1 "0e4178a7e094b9c77431a6f37f7dc2f72acb8389" => :lion
2014-05-15 19:07:39 +00:00
end
stable do
url "http://llvm.org/releases/3.5.0/llvm-3.5.0.src.tar.xz"
sha1 "58d817ac2ff573386941e7735d30702fe71267d5"
resource 'clang' do
url "http://llvm.org/releases/3.5.0/cfe-3.5.0.src.tar.xz"
sha1 "834cee2ed8dc6638a486d8d886b6dce3db675ffa"
end
resource 'lld' do
url "http://llvm.org/releases/3.5.0/lld-3.5.0.src.tar.xz"
sha1 "13c88e1442b482b3ffaff5934f0a2b51cab067e5"
end
end
head do
url "http://llvm.org/svn/llvm-project/llvm/trunk", :using => :svn
resource 'clang' do
url "http://llvm.org/svn/llvm-project/cfe/trunk", :using => :svn
end
resource 'lld' do
url "http://llvm.org/svn/llvm-project/lld/trunk", :using => :svn
end
2013-06-21 15:33:38 +00:00
end
option :universal
option 'with-clang', 'Build Clang support library'
option 'with-lld', 'Build LLD linker'
option 'disable-shared', "Don't build LLVM as a shared library"
option 'all-targets', 'Build all target backends'
option 'rtti', 'Build with C++ RTTI'
option 'disable-assertions', 'Speeds up LLVM, but provides less debug information'
2009-11-18 22:08:29 +00:00
depends_on :python => :optional
keg_only :provided_by_osx
# Apple's libstdc++ is too old to build LLVM
fails_with :gcc
fails_with :llvm
def install
# Apple's libstdc++ is too old to build LLVM
ENV.libcxx if ENV.compiler == :clang
2014-01-24 04:49:15 +00:00
if build.with? "python" and build.include? 'disable-shared'
raise 'The Python bindings need the shared library.'
end
2014-05-12 19:37:24 +00:00
(buildpath/"tools/clang").install resource("clang") if build.with? "clang"
(buildpath/"tools/lld").install resource("lld") if build.with? "lld"
if build.universal?
2014-05-14 05:00:59 +00:00
ENV.permit_arch_flags
ENV['UNIVERSAL'] = '1'
ENV['UNIVERSAL_ARCH'] = Hardware::CPU.universal_archs.join(' ')
end
ENV['REQUIRES_RTTI'] = '1' if build.include? 'rtti'
args = [
"--prefix=#{prefix}",
"--enable-optimized",
# As of LLVM 3.1, attempting to build ocaml bindings with Homebrew's
# OCaml 3.12.1 results in errors.
"--disable-bindings",
]
if build.include? 'all-targets'
args << "--enable-targets=all"
else
args << "--enable-targets=host"
end
args << "--enable-shared" unless build.include? 'disable-shared'
args << "--disable-assertions" if build.include? 'disable-assertions'
system "./configure", *args
system 'make'
system 'make', 'install'
(share/'llvm/cmake').install buildpath/'cmake/modules'
2009-11-18 22:08:29 +00:00
# install llvm python bindings
2014-01-24 04:49:15 +00:00
if build.with? "python"
2014-01-04 13:09:42 +00:00
(lib+'python2.7/site-packages').install buildpath/'bindings/python/llvm'
(lib+'python2.7/site-packages').install buildpath/'tools/clang/bindings/python/clang' if build.with? 'clang'
end
end
2010-10-07 17:13:59 +00:00
test do
system "#{bin}/llvm-config", "--version"
2012-03-22 17:19:39 +00:00
end
def caveats
2014-01-04 13:09:42 +00:00
<<-EOS.undent
2014-07-07 15:34:52 +00:00
LLVM executables are installed in #{opt_bin}.
Extra tools are installed in #{opt_share}/llvm.
If you already have LLVM installed, then "brew upgrade llvm" might not work.
Instead, try:
brew rm llvm && brew install llvm
2010-10-07 17:13:59 +00:00
EOS
end
end