diff options
author | Reid Kleckner <reid@kleckner.net> | 2013-06-14 17:17:23 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2013-06-14 17:17:23 +0000 |
commit | 898229ab4b81ef14429ea79cdd1c4aa3b479ca5a (patch) | |
tree | 6ddef3925e73581ddf64d8139634a006fd75c8fc /clang/tools/c-index-test | |
parent | 3e3e040574b764aacd76828a7df6f9b3ad0eebd2 (diff) | |
download | bcm5719-llvm-898229ab4b81ef14429ea79cdd1c4aa3b479ca5a.tar.gz bcm5719-llvm-898229ab4b81ef14429ea79cdd1c4aa3b479ca5a.zip |
[Driver] Refactor clang driver to use LLVM's Option library
The big changes are:
- Deleting Driver/(Arg|Opt)*
- Rewriting includes to llvm/Option/ and re-sorting
- 'using namespace llvm::opt' in clang::driver
- Fixing the autoconf build by adding option everywhere
As discussed in the review, this change includes using directives in
header files. I'll make follow up changes to remove those in favor of
name specifiers.
Reviewers: espindola
Differential Revision: http://llvm-reviews.chandlerc.com/D975
llvm-svn: 183989
Diffstat (limited to 'clang/tools/c-index-test')
-rw-r--r-- | clang/tools/c-index-test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/tools/c-index-test/Makefile b/clang/tools/c-index-test/Makefile index 7723115263e..4df90e62abe 100644 --- a/clang/tools/c-index-test/Makefile +++ b/clang/tools/c-index-test/Makefile @@ -22,7 +22,7 @@ TOOL_NO_EXPORTS = 1 # LINK_COMPONENTS before including Makefile.rules include $(CLANG_LEVEL)/../../Makefile.config -LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc +LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc option # Note that 'USEDLIBS' must include all of the core clang libraries # when -static is given to linker on cygming. |