Update clang to r328903
Bug: http://b/77532044 * b/77967848 - Disable -Wc++98-compat-extra-semi Test: Test various targets in AOSP and internal branches. For Googlers, go/clang-r328903-testing Change-Id: If08dafb9ad993fb686dfd6eeb5e2d61a9c99bd0b
This commit is contained in:
parent
5a8d1bee89
commit
d7feb380c1
2 changed files with 6 additions and 2 deletions
|
@ -177,6 +177,10 @@ func init() {
|
|||
// warning are fixed.
|
||||
"-Wno-enum-compare",
|
||||
"-Wno-enum-compare-switch",
|
||||
|
||||
// Disable c++98-specific warning since Android is not concerned with C++98
|
||||
// compatibility.
|
||||
"-Wno-c++98-compat-extra-semi",
|
||||
}, " "))
|
||||
}
|
||||
|
||||
|
|
|
@ -124,8 +124,8 @@ var (
|
|||
|
||||
// prebuilts/clang default settings.
|
||||
ClangDefaultBase = "prebuilts/clang/host"
|
||||
ClangDefaultVersion = "clang-4679922"
|
||||
ClangDefaultShortVersion = "7.0.1"
|
||||
ClangDefaultVersion = "clang-r328903"
|
||||
ClangDefaultShortVersion = "7.0.2"
|
||||
|
||||
// Directories with warnings from Android.bp files.
|
||||
WarningAllowedProjects = []string{
|
||||
|
|
Loading…
Reference in a new issue