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 | 54c9eb6fff9b383ce6e30933ad63a7dca8f67b87 (patch) | |
| tree | d6d6e794a10e5cebc55192045286573a6e017f22 /llvm/lib/CompilerDriver | |
| parent | a3082ee59a5a9bbcd47fc9cdddec2b1c618cc9ba (diff) | |
| download | bcm5719-llvm-54c9eb6fff9b383ce6e30933ad63a7dca8f67b87.tar.gz bcm5719-llvm-54c9eb6fff9b383ce6e30933ad63a7dca8f67b87.zip | |
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'
llvm-svn: 120314
Diffstat (limited to 'llvm/lib/CompilerDriver')
| -rw-r--r-- | llvm/lib/CompilerDriver/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | llvm/lib/CompilerDriver/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CompilerDriver/CMakeLists.txt b/llvm/lib/CompilerDriver/CMakeLists.txt index 153dd443cbf..2248de01b95 100644 --- a/llvm/lib/CompilerDriver/CMakeLists.txt +++ b/llvm/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/llvm/lib/CompilerDriver/Makefile b/llvm/lib/CompilerDriver/Makefile index 8e8b73ca8f8..10cfa4f0292 100644 --- a/llvm/lib/CompilerDriver/Makefile +++ b/llvm/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 |

