Set -fomit-frame-pointer for all devices am: 20823f95e6 am: c7155993ee

am: 255924d2a2

Change-Id: I74da5f76ff30b53c294aa7dd2cd66b27180ce222
This commit is contained in:
Colin Cross 2017-11-15 21:56:05 +00:00 committed by android-build-merger
commit 5ed07bf6ec
3 changed files with 2 additions and 4 deletions

View File

@ -27,9 +27,7 @@ var (
"-msoft-float",
}
armCflags = []string{
"-fomit-frame-pointer",
}
armCflags = []string{}
armCppflags = []string{}

View File

@ -62,6 +62,7 @@ var (
"-fstack-protector-strong",
"-Wa,--noexecstack",
"-D_FORTIFY_SOURCE=2",
"-fomit-frame-pointer",
"-Wstrict-aliasing=2",

View File

@ -22,7 +22,6 @@ import (
var (
mipsCflags = []string{
"-fomit-frame-pointer",
"-Umips",
}