[PATCH] D134977: [clang][deps] NFC: Respect working directory on construction
Jan Svoboda via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Oct 4 12:47:39 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rGfb137adc9b3f: [clang][deps] NFC: Respect working directory on construction (authored by jansvoboda11).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D134977/new/
https://reviews.llvm.org/D134977
Files:
clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp
Index: clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp
===================================================================
--- clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp
+++ clang/lib/Tooling/DependencyScanning/DependencyScanningWorker.cpp
@@ -191,7 +191,6 @@
ScanInstance.getFrontendOpts().UseGlobalModuleIndex = false;
ScanInstance.getFrontendOpts().ModulesShareFileManager = false;
- FileMgr->getFileSystemOpts().WorkingDir = std::string(WorkingDirectory);
ScanInstance.setFileManager(FileMgr);
ScanInstance.createSourceManager(*FileMgr);
@@ -370,12 +369,6 @@
for (const std::string &Arg : Args)
Argv.push_back(Arg.c_str());
- // The "input file not found" diagnostics from the driver are useful.
- // The driver is only aware of the VFS working directory, but some clients
- // change this at the FileManager level instead.
- // In this case the checks have false positives, so skip them.
- if (!FM.getFileSystemOpts().WorkingDir.empty())
- Driver->setCheckInputsExist(false);
const std::unique_ptr<driver::Compilation> Compilation(
Driver->BuildCompilation(llvm::makeArrayRef(Argv)));
if (!Compilation)
@@ -395,8 +388,9 @@
// Reset what might have been modified in the previous worker invocation.
RealFS->setCurrentWorkingDirectory(WorkingDirectory);
- auto FileMgr =
- llvm::makeIntrusiveRefCnt<FileManager>(FileSystemOptions(), RealFS);
+ FileSystemOptions FSOpts;
+ FSOpts.WorkingDir = WorkingDirectory.str();
+ auto FileMgr = llvm::makeIntrusiveRefCnt<FileManager>(FSOpts, RealFS);
Optional<std::vector<std::string>> ModifiedCommandLine;
if (ModuleName) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D134977.465123.patch
Type: text/x-patch
Size: 1689 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20221004/a52889a8/attachment.bin>
More information about the cfe-commits
mailing list