2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-08-31 13:45:04 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Llvm < Formula
|
2014-01-06 20:11:40 +00:00
|
|
|
homepage 'http://llvm.org/'
|
|
|
|
url 'http://llvm.org/releases/3.4/llvm-3.4.src.tar.gz'
|
|
|
|
sha1 '10b1fd085b45d8b19adb9a628353ce347bc136b8'
|
|
|
|
|
|
|
|
resource 'clang' do
|
|
|
|
url 'http://llvm.org/releases/3.4/clang-3.4.src.tar.gz'
|
|
|
|
sha1 'a6a3c815dd045e9c13c7ae37d2cfefe65607860d'
|
2013-06-21 15:33:38 +00:00
|
|
|
end
|
|
|
|
|
2012-08-13 15:55:01 +00:00
|
|
|
option :universal
|
2013-09-01 19:57:42 +00:00
|
|
|
option 'with-clang', 'Build Clang support library'
|
2013-01-21 09:33:56 +00:00
|
|
|
option 'disable-shared', "Don't build LLVM as a shared library"
|
2012-08-13 15:55:01 +00:00
|
|
|
option 'all-targets', 'Build all target backends'
|
|
|
|
option 'rtti', 'Build with C++ RTTI'
|
2012-12-06 20:21:07 +00:00
|
|
|
option 'disable-assertions', 'Speeds up LLVM, but provides less debug information'
|
2009-11-18 22:08:29 +00:00
|
|
|
|
2013-01-21 09:33:56 +00:00
|
|
|
depends_on :python => :recommended
|
|
|
|
|
2013-05-14 22:49:33 +00:00
|
|
|
env :std if build.universal?
|
2011-01-09 18:32:58 +00:00
|
|
|
|
2013-11-15 22:31:39 +00:00
|
|
|
keg_only :provided_by_osx
|
|
|
|
|
2013-05-14 22:49:33 +00:00
|
|
|
def install
|
2014-01-24 04:49:15 +00:00
|
|
|
if build.with? "python" and build.include? 'disable-shared'
|
2013-01-21 09:33:56 +00:00
|
|
|
raise 'The Python bindings need the shared library.'
|
|
|
|
end
|
|
|
|
|
2014-01-06 20:11:40 +00:00
|
|
|
resource('clang').stage do
|
2013-08-23 11:03:31 +00:00
|
|
|
(buildpath/'tools/clang').install Dir['*']
|
|
|
|
end if build.with? 'clang'
|
2013-01-12 21:40:46 +00:00
|
|
|
|
2012-08-13 15:55:01 +00:00
|
|
|
if build.universal?
|
2010-12-08 22:43:28 +00:00
|
|
|
ENV['UNIVERSAL'] = '1'
|
2013-08-02 03:51:36 +00:00
|
|
|
ENV['UNIVERSAL_ARCH'] = Hardware::CPU.universal_archs.join(' ')
|
2010-12-08 22:43:28 +00:00
|
|
|
end
|
|
|
|
|
2012-08-13 15:55:01 +00:00
|
|
|
ENV['REQUIRES_RTTI'] = '1' if build.include? 'rtti'
|
2011-01-09 18:32:58 +00:00
|
|
|
|
2012-08-13 15:55:01 +00:00
|
|
|
args = [
|
2011-12-03 22:56:37 +00:00
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--enable-optimized",
|
2012-08-11 09:21:42 +00:00
|
|
|
# As of LLVM 3.1, attempting to build ocaml bindings with Homebrew's
|
|
|
|
# OCaml 3.12.1 results in errors.
|
|
|
|
"--disable-bindings",
|
2011-12-03 22:56:37 +00:00
|
|
|
]
|
2011-01-09 18:32:58 +00:00
|
|
|
|
2012-08-13 15:55:01 +00:00
|
|
|
if build.include? 'all-targets'
|
|
|
|
args << "--enable-targets=all"
|
2011-05-11 22:32:19 +00:00
|
|
|
else
|
2012-08-13 15:55:01 +00:00
|
|
|
args << "--enable-targets=host"
|
2011-05-11 22:32:19 +00:00
|
|
|
end
|
2013-01-21 09:33:56 +00:00
|
|
|
args << "--enable-shared" unless build.include? 'disable-shared'
|
2011-01-09 18:32:58 +00:00
|
|
|
|
2012-12-06 20:21:07 +00:00
|
|
|
args << "--disable-assertions" if build.include? 'disable-assertions'
|
|
|
|
|
2012-08-13 15:55:01 +00:00
|
|
|
system "./configure", *args
|
2014-01-06 20:11:40 +00:00
|
|
|
system 'make'
|
|
|
|
system 'make', 'install'
|
|
|
|
|
|
|
|
(share/'llvm/cmake').install buildpath/'cmake/modules'
|
2009-11-18 22:08:29 +00:00
|
|
|
|
2012-08-11 09:21:42 +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'
|
2013-01-21 09:33:56 +00:00
|
|
|
end
|
2009-08-31 13:45:04 +00:00
|
|
|
end
|
2010-10-07 17:13:59 +00:00
|
|
|
|
2012-03-22 17:19:39 +00:00
|
|
|
def test
|
2012-05-15 21:36:45 +00:00
|
|
|
system "#{bin}/llvm-config", "--version"
|
2012-03-22 17:19:39 +00:00
|
|
|
end
|
|
|
|
|
2013-01-21 09:33:56 +00:00
|
|
|
def caveats
|
2014-01-04 13:09:42 +00:00
|
|
|
<<-EOS.undent
|
2013-01-21 09:33:56 +00:00
|
|
|
Extra tools are installed in #{share}/llvm and #{share}/clang.
|
2012-08-11 09:21:42 +00:00
|
|
|
|
2013-01-21 09:33:56 +00:00
|
|
|
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
|
2009-08-31 13:45:04 +00:00
|
|
|
end
|