diff options
| author | Jack Nagel | 2015-01-21 15:25:42 -0500 |
|---|---|---|
| committer | Jack Nagel | 2015-01-21 15:26:48 -0500 |
| commit | 12bb8ab4e1e7b19559c89c2817d907c8254d697c (patch) | |
| tree | 6cca145ec2391b879ee549618d75a054065ab7bd | |
| parent | 3288c4fae3e8ab984a64c11802ac6e3b7d01ce26 (diff) | |
| download | homebrew-12bb8ab4e1e7b19559c89c2817d907c8254d697c.tar.bz2 | |
Revert "llvm: add compiler-rt to clang build"
Compilation fails due to a dynamic linking error, probably caused by our
dylib ID patch. I should have vetted this change better.
This reverts commit 4750b80e0720f68fab611cc80bd2b893ae1bd2ca.
| -rw-r--r-- | Library/Formula/llvm.rb | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Library/Formula/llvm.rb b/Library/Formula/llvm.rb index 3b2889b3a..104207bca 100644 --- a/Library/Formula/llvm.rb +++ b/Library/Formula/llvm.rb @@ -24,11 +24,6 @@ class Llvm < Formula url "http://llvm.org/releases/3.5.1/clang-tools-extra-3.5.1.src.tar.xz" sha1 "7a0dd880d7d8fe48bdf0f841eca318337d27a345" end - - resource "compiler-rt" do - url "http://llvm.org/releases/3.5.1/compiler-rt-3.5.1.src.tar.xz" - sha1 "620d59dcc375b24c5663f2793b2bcd74f848435d" - end end bottle do @@ -55,10 +50,6 @@ class Llvm < Formula resource "clang-tools-extra" do url "http://llvm.org/git/clang-tools-extra.git" end - - resource "compiler-rt" do - url "http://llvm.org/git/compiler-rt.git" - end end # Use absolute paths for shared library IDs @@ -97,7 +88,6 @@ class Llvm < Formula (buildpath/"projects/libcxx").install resource("libcxx") (buildpath/"tools/clang").install resource("clang") (buildpath/"tools/clang/tools/extra").install resource("clang-tools-extra") - (buildpath/"projects/compiler-rt").install resource("compiler-rt") end (buildpath/"tools/lld").install resource("lld") if build.with? "lld" |
