Add comment about what -N -l does. am: a4c074bc25

Original change: https://android-review.googlesource.com/c/platform/build/blueprint/+/1644906

Change-Id: Iae89ded69b550829d0221976c2bf548cd080e588
This commit is contained in:
Lukacs T. Berki 2021-03-18 09:34:48 +00:00 committed by Automerger Merge Worker
commit b442d3ffe4

View file

@ -67,6 +67,7 @@ var (
})
debugFlagsVariable = bootstrapVariable("debugFlags", func(c BootstrapConfig) string {
if c.DebugCompilation() {
// -N: disable optimizations, -l: disable inlining
return "-N -l"
} else {
return ""