Merge "Switch from clang-r370808b to clang-r377782" am: 8744cdffeb
am: 1c04724bbd
am: b0847994f6
Change-Id: If8aa3a6ad9a294feec95f10921d39291000c3f1e
This commit is contained in:
commit
6b83521f90
2 changed files with 9 additions and 2 deletions
|
@ -169,6 +169,13 @@ func init() {
|
|||
"-Wno-reorder-init-list",
|
||||
// http://b/145211066
|
||||
"-Wno-implicit-int-float-conversion",
|
||||
// New warnings to be fixed after clang-r377782.
|
||||
"-Wno-bitwise-conditional-parentheses", // http://b/148286937
|
||||
"-Wno-bool-operation", // http://b/148287141
|
||||
"-Wno-int-in-bool-context", // http://b/148287349
|
||||
"-Wno-sizeof-array-div", // http://b/148815709
|
||||
"-Wno-tautological-bitwise-compare", // http://b/148831363
|
||||
"-Wno-tautological-overlap-compare", // http://b/148815696
|
||||
}, " "))
|
||||
|
||||
// Extra cflags for external third-party projects to disable warnings that
|
||||
|
|
|
@ -127,8 +127,8 @@ var (
|
|||
|
||||
// prebuilts/clang default settings.
|
||||
ClangDefaultBase = "prebuilts/clang/host"
|
||||
ClangDefaultVersion = "clang-r370808b"
|
||||
ClangDefaultShortVersion = "10.0.2"
|
||||
ClangDefaultVersion = "clang-r377782"
|
||||
ClangDefaultShortVersion = "10.0.3"
|
||||
|
||||
// Directories with warnings from Android.bp files.
|
||||
WarningAllowedProjects = []string{
|
||||
|
|
Loading…
Reference in a new issue