diff options
| author | Charles Davis <cdavis@mines.edu> | 2010-11-29 19:44:50 +0000 |
|---|---|---|
| committer | Charles Davis <cdavis@mines.edu> | 2010-11-29 19:44:50 +0000 |
| commit | 53ca1f3190680f3e86aebe0f72f7918d63f71e0d (patch) | |
| tree | 7fcbf5fffb4c64ca65ad4f36d8059a1340127d16 /lib/CompilerDriver | |
| parent | 693eeb5968cce3fa36fc0f59f52a81490256faf2 (diff) | |
| download | external_llvm-53ca1f3190680f3e86aebe0f72f7918d63f71e0d.zip external_llvm-53ca1f3190680f3e86aebe0f72f7918d63f71e0d.tar.gz external_llvm-53ca1f3190680f3e86aebe0f72f7918d63f71e0d.tar.bz2 | |
Now to chant the magical incantation that will exorcise the System library
from LLVM forever:
grep -lR "llvm/System" * | grep -v .svn | xargs sed -ie 's#llvm/System#llvm/Support#g'
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120314 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CompilerDriver')
| -rw-r--r-- | lib/CompilerDriver/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | lib/CompilerDriver/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/CompilerDriver/CMakeLists.txt b/lib/CompilerDriver/CMakeLists.txt index 153dd44..2248de0 100644 --- a/lib/CompilerDriver/CMakeLists.txt +++ b/lib/CompilerDriver/CMakeLists.txt @@ -1,4 +1,4 @@ -set(LLVM_LINK_COMPONENTS support system) +set(LLVM_LINK_COMPONENTS support) set(LLVM_REQUIRES_EH 1) add_llvm_tool(llvmc diff --git a/lib/CompilerDriver/Makefile b/lib/CompilerDriver/Makefile index 8e8b73c..10cfa4f 100644 --- a/lib/CompilerDriver/Makefile +++ b/lib/CompilerDriver/Makefile @@ -13,7 +13,7 @@ LEVEL = ../.. # name doesn't start with "LLVM" and NO_LLVM_CONFIG is set. LIBRARYNAME = CompilerDriver -LINK_COMPONENTS = support system +LINK_COMPONENTS = support NO_LLVM_CONFIG = 1 |
