aaron.ballman added inline comments.

================
Comment at: clang/docs/UsersManual.rst:947-949
+Option `--search-config-dirs` changes the search algorith if the included
+file is specified without a directory separator. In this case the file is 
looked
+for in the same directories as configuration files.
----------------



================
Comment at: llvm/lib/Support/CommandLine.cpp:1188-1194
+  if (InConfigFile) {
+    if (std::find_if(NewArgv.begin(), NewArgv.end(),
+                     [](const char *Arg) -> bool {
+                       return StringRef("--search-config-dirs") == Arg;
+                     }) != NewArgv.end())
+      setSearchAsConfig(true);
+  }
----------------



================
Comment at: llvm/lib/Support/CommandLine.cpp:1384-1387
+    if (llvm::sys::path::is_relative(FileName)) {
+      if (FS->makeAbsolute(CfgFilePath))
+        return false;
+    }
----------------



Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D133325/new/

https://reviews.llvm.org/D133325

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to