diff options
author | Adrian Prantl <aprantl@apple.com> | 2015-08-27 19:46:20 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2015-08-27 19:46:20 +0000 |
commit | 6b21ab21d120abf46f06803d47da123b4e8be420 (patch) | |
tree | 67a155d58aa3e07fc339ab38615e5bf78b60e6fc /clang/tools/libclang | |
parent | ed6eab32b38b54ed513e38eafbab6e38f3b58738 (diff) | |
download | bcm5719-llvm-6b21ab21d120abf46f06803d47da123b4e8be420.tar.gz bcm5719-llvm-6b21ab21d120abf46f06803d47da123b4e8be420.zip |
Add a -gmodules option to the driver and a -dwarf-ext-refs to cc1
to enable the use of external type references in the debug info
(a.k.a. module debugging).
The driver expands -gmodules to "-g -fmodule-format=obj -dwarf-ext-refs"
and passes that to cc1. All this does at the moment is set a flag
codegenopts.
http://reviews.llvm.org/D11958
llvm-svn: 246192
Diffstat (limited to 'clang/tools/libclang')
-rw-r--r-- | clang/tools/libclang/CIndex.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/tools/libclang/CIndex.cpp b/clang/tools/libclang/CIndex.cpp index 0334e721015..cbba64a431a 100644 --- a/clang/tools/libclang/CIndex.cpp +++ b/clang/tools/libclang/CIndex.cpp @@ -2971,7 +2971,8 @@ enum CXErrorCode clang_createTranslationUnit2(CXIndex CIdx, CompilerInstance::createDiagnostics(new DiagnosticOptions()); std::unique_ptr<ASTUnit> AU = ASTUnit::LoadFromASTFile( ast_filename, CXXIdx->getPCHContainerOperations()->getRawReader(), Diags, - FileSystemOpts, CXXIdx->getOnlyLocalDecls(), None, + FileSystemOpts, /*UseDebugInfo=*/false, + CXXIdx->getOnlyLocalDecls(), None, /*CaptureDiagnostics=*/true, /*AllowPCHWithCompilerErrors=*/true, /*UserFilesAreVolatile=*/true); |