Switch to clang-4393122.
Bug: http://b/62580008 Bug: http://b/68236239 Bug: http://b/68236396 Test: https://goto.google.com/clang-4393122-testing Change-Id: Ib6bcf93e356172aad2a762b730a6f93916a5d845
This commit is contained in:
parent
047a24ac5c
commit
0ed7d24f7a
2 changed files with 8 additions and 2 deletions
|
@ -97,6 +97,12 @@ func init() {
|
|||
// http://b/29823425 Disable -Wexpansion-to-defined for Clang update to r271374
|
||||
"-Wno-expansion-to-defined",
|
||||
|
||||
// http://b/68236239 Allow 0/NULL instead of using nullptr everywhere.
|
||||
"-Wno-zero-as-null-pointer-constant",
|
||||
|
||||
// http://b/68236396 Allow unknown warning options.
|
||||
"-Wno-unknown-warning-option",
|
||||
|
||||
// http://b/36463318 Clang executes with an absolute path, so clang-provided
|
||||
// headers are now absolute.
|
||||
"-fdebug-prefix-map=$$PWD/=",
|
||||
|
|
|
@ -77,8 +77,8 @@ var (
|
|||
|
||||
// prebuilts/clang default settings.
|
||||
ClangDefaultBase = "prebuilts/clang/host"
|
||||
ClangDefaultVersion = "clang-4053586"
|
||||
ClangDefaultShortVersion = "5.0"
|
||||
ClangDefaultVersion = "clang-4393122"
|
||||
ClangDefaultShortVersion = "5.0.1"
|
||||
)
|
||||
|
||||
var pctx = android.NewPackageContext("android/soong/cc/config")
|
||||
|
|
Loading…
Reference in a new issue