Switch to clang-4393122.
am: 0ed7d24f7a
Change-Id: I9792f96d02044430629ea08e23b5d1cc3e5938f8
This commit is contained in:
commit
bc7ab77eb9
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