diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/llvm.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Library/Formula/llvm.rb b/Library/Formula/llvm.rb index 41018c782..3b2889b3a 100644 --- a/Library/Formula/llvm.rb +++ b/Library/Formula/llvm.rb @@ -71,7 +71,6 @@ class Llvm < Formula option "with-all-targets", "Build all target backends" option "without-shared", "Don't build LLVM as a shared library" option "without-assertions", "Speeds up LLVM, but provides less debug information" - option "with-asan", "Include support for -faddress-sanitizer (from compiler-rt)" deprecated_option "rtti" => "with-rtti" deprecated_option "all-targets" => "with-all-targets" @@ -98,7 +97,7 @@ 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") if build.with? "asan" + (buildpath/"projects/compiler-rt").install resource("compiler-rt") end (buildpath/"tools/lld").install resource("lld") if build.with? "lld" @@ -119,7 +118,7 @@ class Llvm < Formula "--disable-bindings", ] - if build.with? "all-targets" or build.with? "asan" + if build.with? "all-targets" args << "--enable-targets=all" else args << "--enable-targets=host" |
