homebrew-core/Formula/llvm.rb
Tamir Duberstein 495ae534f7 Build LLVM out-of-source
Fixes Homebrew/homebrew#37167.
Closes Homebrew/homebrew#39371.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-05-05 21:54:05 -04:00

178 lines
5.2 KiB
Ruby

class Llvm < Formula
homepage "http://llvm.org/"
stable do
url "http://llvm.org/releases/3.5.1/llvm-3.5.1.src.tar.xz"
sha1 "79638cf00584b08fd6eeb1e73ea69b331561e7f6"
resource "clang" do
url "http://llvm.org/releases/3.5.1/cfe-3.5.1.src.tar.xz"
sha1 "39d79c0b40cec548a602dcac3adfc594b18149fe"
end
resource "libcxx" do
url "http://llvm.org/releases/3.5.1/libcxx-3.5.1.src.tar.xz"
sha1 "aa8d221f4db99f5a8faef6b594cbf7742cc55ad2"
end
resource "lld" do
url "http://llvm.org/releases/3.5.1/lld-3.5.1.src.tar.xz"
sha1 "9af270a79ae0aeb0628112073167495c43ab836a"
end
resource "lldb" do
url "http://llvm.org/releases/3.5.1/lldb-3.5.1.src.tar.xz"
sha1 "32728e25e6e513528c8c793ae65981150bec7c0d"
end
resource "clang-tools-extra" do
url "http://llvm.org/releases/3.5.1/clang-tools-extra-3.5.1.src.tar.xz"
sha1 "7a0dd880d7d8fe48bdf0f841eca318337d27a345"
end
end
bottle do
sha1 "3e2dd43db3c45a3bcf96174e0b195267f66f0307" => :yosemite
sha1 "e0314fabbc5791fb665225ca91602b3fdd745072" => :mavericks
sha1 "59857e2f5670c9edb4adfd3cc3f03af2411e9c30" => :mountain_lion
end
head do
url "http://llvm.org/git/llvm.git"
resource "clang" do
url "http://llvm.org/git/clang.git"
end
resource "libcxx" do
url "http://llvm.org/git/libcxx.git"
end
resource "lld" do
url "http://llvm.org/git/lld.git"
end
resource "lldb" do
url "http://llvm.org/git/lldb.git"
end
resource "clang-tools-extra" do
url "http://llvm.org/git/clang-tools-extra.git"
end
end
# Use absolute paths for shared library IDs
patch :DATA
option :universal
option "with-clang", "Build Clang support library"
option "with-lld", "Build LLD linker"
option "with-lldb", "Build LLDB debugger"
option "with-rtti", "Build with C++ RTTI"
option "with-python", "Build Python bindings against Homebrew Python"
option "without-shared", "Don't build LLVM as a shared library"
option "without-assertions", "Speeds up LLVM, but provides less debug information"
deprecated_option "rtti" => "with-rtti"
deprecated_option "disable-shared" => "without-shared"
deprecated_option "disable-assertions" => "without-assertions"
if MacOS.version <= :snow_leopard
depends_on :python
else
depends_on :python => :optional
end
depends_on "cmake" => :build
depends_on "swig" if build.with? "lldb"
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
if build.with?("lldb") && build.without?("clang")
fail "Building LLDB needs Clang support library."
end
if build.with? "clang"
(buildpath/"projects/libcxx").install resource("libcxx")
(buildpath/"tools/clang").install resource("clang")
(buildpath/"tools/clang/tools/extra").install resource("clang-tools-extra")
end
(buildpath/"tools/lld").install resource("lld") if build.with? "lld"
(buildpath/"tools/lldb").install resource("lldb") if build.with? "lldb"
if build.universal?
ENV.permit_arch_flags
ENV["UNIVERSAL"] = "1"
ENV["UNIVERSAL_ARCH"] = Hardware::CPU.universal_archs.join(" ")
end
ENV["REQUIRES_RTTI"] = "1" if build.with?("rtti") || build.with?("clang")
args = %w[
-DLLVM_OPTIMIZED_TABLEGEN=On
]
args << "-DBUILD_SHARED_LIBS=Off" if build.without? "shared"
args << "-DLLVM_ENABLE_ASSERTIONS=On" if build.with? "assertions"
mktemp do
system "cmake", "-G", "Unix Makefiles", buildpath, *(std_cmake_args + args)
system "make"
system "make", "install"
end
if build.with? "clang"
system "make", "-C", "projects/libcxx", "install",
"DSTROOT=#{prefix}", "SYMROOT=#{buildpath}/projects/libcxx"
(share/"clang/tools").install Dir["tools/clang/tools/scan-{build,view}"]
inreplace "#{share}/clang/tools/scan-build/scan-build", "$RealBin/bin/clang", "#{bin}/clang"
bin.install_symlink share/"clang/tools/scan-build/scan-build", share/"clang/tools/scan-view/scan-view"
man1.install_symlink share/"clang/tools/scan-build/scan-build.1"
end
# install llvm python bindings
(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
test do
system "#{bin}/llvm-config", "--version"
end
def caveats
<<-EOS.undent
LLVM executables are installed in #{opt_bin}.
Extra tools are installed in #{opt_share}/llvm.
EOS
end
end
__END__
diff --git a/Makefile.rules b/Makefile.rules
index ebebc0a..b0bb378 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -599,7 +599,12 @@ ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
ifneq ($(HOST_OS),Darwin)
LD.Flags += $(RPATH) -Wl,'$$ORIGIN'
else
- LD.Flags += -Wl,-install_name -Wl,"@rpath/lib$(LIBRARYNAME)$(SHLIBEXT)"
+ LD.Flags += -Wl,-install_name
+ ifdef LOADABLE_MODULE
+ LD.Flags += -Wl,"$(PROJ_libdir)/$(LIBRARYNAME)$(SHLIBEXT)"
+ else
+ LD.Flags += -Wl,"$(PROJ_libdir)/$(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)"
+ endif
endif
endif
endif