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 e6cd9ef commit ab8466dCopy full SHA for ab8466d
bant/tool/compilation-db.cc
@@ -256,6 +256,9 @@ static std::vector<std::string> CollectIncDirs(
256
if (inc_path.starts_with(kExternalPrefix)) {
257
result.emplace_back(absl::StrCat(
258
"bazel-bin/external", inc_path.substr(kExternalPrefix.length())));
259
+ } else {
260
+ // Not external: then our own possible build path.
261
+ result.emplace_back(absl::StrCat("bazel-bin/", inc_path));
262
}
263
264
0 commit comments