diff options
author | Adrian Prantl <aprantl@apple.com> | 2015-02-20 23:34:26 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2015-02-20 23:34:26 +0000 |
commit | f2b0cd91ebe6a99437e22d99f78c1bfaf756f4c8 (patch) | |
tree | baca05d6b36b1c94325edb8cd6841013ccb3a7ca /clang/tools/c-index-test | |
parent | 1f3e5c195c9bbb1cda5d6b1f4a417513b55e1fa0 (diff) | |
download | bcm5719-llvm-f2b0cd91ebe6a99437e22d99f78c1bfaf756f4c8.tar.gz bcm5719-llvm-f2b0cd91ebe6a99437e22d99f78c1bfaf756f4c8.zip |
Wrap clang module files in a Mach-O, ELF, or COFF container.
This is a necessary prerequisite for debugging with modules.
The .pcm files become containers that hold the serialized AST which allows
us to store debug information in the module file that can be shared by all
object files that were built importing the module.
rdar://problem/19104245
This reapplies r230044 with a fixed configure+make build and updated
dependencies. Take 2.
llvm-svn: 230089
Diffstat (limited to 'clang/tools/c-index-test')
-rw-r--r-- | clang/tools/c-index-test/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clang/tools/c-index-test/Makefile b/clang/tools/c-index-test/Makefile index 62bc9348dbf..068fce19bea 100644 --- a/clang/tools/c-index-test/Makefile +++ b/clang/tools/c-index-test/Makefile @@ -22,12 +22,14 @@ TOOL_NO_EXPORTS = 1 # LINK_COMPONENTS before including Makefile.rules include $(CLANG_LEVEL)/../../Makefile.config -LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc option +LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader bitwriter \ + instrumentation ipo support mc objcarcopts option # Note that 'USEDLIBS' must include all of the core clang libraries # when -static is given to linker on cygming. USEDLIBS = clang.a \ clangIndex.a clangFormat.a clangRewrite.a \ + clangCodeGen.a \ clangFrontend.a clangDriver.a \ clangTooling.a \ clangToolingCore.a \ |