Merge "Use only single dash for tidy flags" am: def9bf2c1c am: df8fe32206 am: 31989351ac

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1972547

Change-Id: I9e1b8755cfb9a9bbbf79f6652b01a71730413e8e
This commit is contained in:
Chih-hung Hsieh
2022-02-08 23:05:31 +00:00
committed by Automerger Merge Worker

View File

@@ -102,6 +102,12 @@ func (tidy *tidyFeature) flags(ctx ModuleContext, flags Flags) Flags {
}
flags.TidyFlags = append(flags.TidyFlags, headerFilter)
}
// Work around RBE bug in parsing clang-tidy flags, replace "--flag" with "-flag".
// Some C/C++ modules added local tidy flags like --header-filter= and --extra-arg-before=.
doubleDash := regexp.MustCompile("^('?)--(.*)$")
for i, s := range flags.TidyFlags {
flags.TidyFlags[i] = doubleDash.ReplaceAllString(s, "$1-$2")
}
// If clang-tidy is not enabled globally, add the -quiet flag.
if !ctx.Config().ClangTidy() {