diff options
author | John McCall <rjmccall@apple.com> | 2010-08-20 18:27:03 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-08-20 18:27:03 +0000 |
commit | 19510856727e0e14a3696b2a72c35163bff2a71f (patch) | |
tree | aa4cb42590b8bf0df7ffb7115c7d74c4a68ef3f2 /tools/c-index-test | |
parent | 033b7b327e8cdc8cd4bafce1625ea88bc9e3f6c8 (diff) |
Another step in the process of making the parser depend on Sema:
- move DeclSpec &c into the Sema library
- move ParseAST into the Parse library
Reflect this change in a thousand different includes.
Reflect this change in the link orders.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111667 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/c-index-test')
-rw-r--r-- | tools/c-index-test/CMakeLists.txt | 2 | ||||
-rw-r--r-- | tools/c-index-test/Makefile | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/c-index-test/CMakeLists.txt b/tools/c-index-test/CMakeLists.txt index 9426899e7b..5cf2cd6ebf 100644 --- a/tools/c-index-test/CMakeLists.txt +++ b/tools/c-index-test/CMakeLists.txt @@ -6,10 +6,10 @@ set( LLVM_USED_LIBS clangFrontend clangDriver clangSerialization + clangParse clangSema clangAnalysis clangAST - clangParse clangLex clangBasic ) diff --git a/tools/c-index-test/Makefile b/tools/c-index-test/Makefile index 516a298ab3..f41aa80981 100644 --- a/tools/c-index-test/Makefile +++ b/tools/c-index-test/Makefile @@ -15,7 +15,7 @@ TOOL_NO_EXPORTS = 1 LINK_COMPONENTS := bitreader mc core USEDLIBS = clang.a clangIndex.a clangFrontend.a clangDriver.a \ - clangSerialization.a clangSema.a clangAnalysis.a clangAST.a \ - clangParse.a clangLex.a clangBasic.a + clangSerialization.a clangParse.a clangSema.a clangAnalysis.a \ + clangAST.a clangLex.a clangBasic.a include $(CLANG_LEVEL)/Makefile |