Merge "Discard IllegalFlags when testing a new compiler" into main
This commit is contained in:
commit
e19a173a48
1 changed files with 2 additions and 1 deletions
|
@ -353,7 +353,7 @@ var (
|
||||||
|
|
||||||
llvmNextExtraCommonGlobalCflags = []string{
|
llvmNextExtraCommonGlobalCflags = []string{
|
||||||
// Do not report warnings when testing with the top of trunk LLVM.
|
// Do not report warnings when testing with the top of trunk LLVM.
|
||||||
"-Wno-error",
|
"-Wno-everything",
|
||||||
}
|
}
|
||||||
|
|
||||||
// Flags that must not appear in any command line.
|
// Flags that must not appear in any command line.
|
||||||
|
@ -469,6 +469,7 @@ func init() {
|
||||||
flags := noOverrideGlobalCflags
|
flags := noOverrideGlobalCflags
|
||||||
if ctx.Config().IsEnvTrue("LLVM_NEXT") {
|
if ctx.Config().IsEnvTrue("LLVM_NEXT") {
|
||||||
flags = append(noOverrideGlobalCflags, llvmNextExtraCommonGlobalCflags...)
|
flags = append(noOverrideGlobalCflags, llvmNextExtraCommonGlobalCflags...)
|
||||||
|
IllegalFlags = []string{} // Don't fail build while testing a new compiler.
|
||||||
}
|
}
|
||||||
return strings.Join(flags, " ")
|
return strings.Join(flags, " ")
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue