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

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

Change-Id: Ib94fdaafa6007ea44808df7b33f5c5c4278ecd00
This commit is contained in:
Lukacs T. Berki 2021-03-18 15:18:25 +00:00 committed by Automerger Merge Worker
commit 40a7d4f9d2

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 ""