Merge "Switch clang to r353983" am: bdb1ed828d
am: cc6ac6647f
Change-Id: Ifd943b560e640d00d4452d92cd62196204722209
This commit is contained in:
commit
d182fd4f26
3 changed files with 7 additions and 4 deletions
|
@ -175,6 +175,10 @@ func init() {
|
|||
|
||||
// Disable this warning because we don't care about behavior with older compilers.
|
||||
"-Wno-return-std-move-in-c++11",
|
||||
|
||||
// Disable -Wstring-plus-int until the instances detected by this new warning is
|
||||
// fixed.
|
||||
"-Wno-string-plus-int",
|
||||
}, " "))
|
||||
|
||||
// Extra cflags for projects under external/ directory
|
||||
|
|
|
@ -120,8 +120,8 @@ var (
|
|||
|
||||
// prebuilts/clang default settings.
|
||||
ClangDefaultBase = "prebuilts/clang/host"
|
||||
ClangDefaultVersion = "clang-r349610"
|
||||
ClangDefaultShortVersion = "8.0.8"
|
||||
ClangDefaultVersion = "clang-r353983"
|
||||
ClangDefaultShortVersion = "9.0.1"
|
||||
|
||||
// Directories with warnings from Android.bp files.
|
||||
WarningAllowedProjects = []string{
|
||||
|
|
|
@ -83,8 +83,7 @@ func (lto *lto) flags(ctx BaseModuleContext, flags Flags) Flags {
|
|||
if lto.LTO() {
|
||||
var ltoFlag string
|
||||
if Bool(lto.Properties.Lto.Thin) {
|
||||
ltoFlag = "-flto=thin"
|
||||
|
||||
ltoFlag = "-flto=thin -fsplit-lto-unit"
|
||||
} else {
|
||||
ltoFlag = "-flto"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue