project: strip -Xclang <arg>

This commit is contained in:
Fangrui Song 2019-09-11 19:05:04 -07:00
parent b3d694b8bd
commit 0c6be472ce

View File

@ -90,6 +90,10 @@ struct ProjectProcessor {
i++;
return true;
}
if (arg == "-Xclang") {
i++;
return true;
}
return exclude_args.count(arg) ||
any_of(exclude_globs,
[&](const GlobPattern &glob) { return glob.match(arg); });