We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e8bee7 commit dd7f47cCopy full SHA for dd7f47c
clang/lib/Driver/Driver.cpp
@@ -1855,7 +1855,7 @@ Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) {
1855
// pruned later.
1856
const auto StdModuleManifestPath =
1857
GetStdModuleManifestPath(*C, C->getDefaultToolChain());
1858
- if (StdModuleManifestPath == "<NOT PRESENT>") {
+ if (llvm::sys::fs::exists(StdModuleManifestPath)) {
1859
Diags.Report(diag::remark_modules_manifest_not_found);
1860
} else {
1861
Diags.Report(diag::remark_using_modules_manifest)
0 commit comments