summaryrefslogtreecommitdiff
path: root/tools/diagtool
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2015-02-20 23:34:26 +0000
committerAdrian Prantl <aprantl@apple.com>2015-02-20 23:34:26 +0000
commit4d355e22e150ad96f50beed1c1ae5a5a8370c3f2 (patch)
tree2980270e5e057ae79af90fa738fcae67366d07d0 /tools/diagtool
parentff780299d2517c9e2bd5ce34ab59e150043ac633 (diff)
downloadclang-4d355e22e150ad96f50beed1c1ae5a5a8370c3f2.tar.gz
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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@230089 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/diagtool')
-rw-r--r--tools/diagtool/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/diagtool/Makefile b/tools/diagtool/Makefile
index d49e976e64..1a74506006 100644
--- a/tools/diagtool/Makefile
+++ b/tools/diagtool/Makefile
@@ -20,7 +20,7 @@ include $(CLANG_LEVEL)/../../Makefile.config
LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc option
USEDLIBS = clangFrontend.a clangDriver.a clangSerialization.a clangParse.a \
clangSema.a clangAnalysis.a clangEdit.a clangAST.a clangLex.a \
- clangBasic.a
+ clangBasic.a clangCodeGen.a
include $(CLANG_LEVEL)/Makefile