aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Frontend
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2017-02-25 18:14:31 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2017-02-25 18:14:31 +0000
commitbdff27dbeac3f8152bb2195bc6e4d51e54c5360a (patch)
treee316e55a698818e54e09d284a452534570cda986 /clang/lib/Frontend
parent3b8aca2ecfe75fc7b2b345dc40e020ada1271c18 (diff)
downloadllvm-bdff27dbeac3f8152bb2195bc6e4d51e54c5360a.zip
llvm-bdff27dbeac3f8152bb2195bc6e4d51e54c5360a.tar.gz
llvm-bdff27dbeac3f8152bb2195bc6e4d51e54c5360a.tar.bz2
[modules] For -module-file-info, print out the resource dir path, since it is included in the module hash.
llvm-svn: 296261
Diffstat (limited to 'clang/lib/Frontend')
-rw-r--r--clang/lib/Frontend/FrontendActions.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/Frontend/FrontendActions.cpp b/clang/lib/Frontend/FrontendActions.cpp
index f795a1d..c475cf4 100644
--- a/clang/lib/Frontend/FrontendActions.cpp
+++ b/clang/lib/Frontend/FrontendActions.cpp
@@ -567,6 +567,7 @@ namespace {
bool Complain) override {
Out.indent(2) << "Header search options:\n";
Out.indent(4) << "System root [-isysroot=]: '" << HSOpts.Sysroot << "'\n";
+ Out.indent(4) << "Resource dir [ -resource-dir=]: '" << HSOpts.ResourceDir << "'\n";
Out.indent(4) << "Module Cache: '" << SpecificModuleCachePath << "'\n";
DUMP_BOOLEAN(HSOpts.UseBuiltinIncludes,
"Use builtin include directories [-nobuiltininc]");