From a4c074bc2502e60366f43f4cca21509a344849a1 Mon Sep 17 00:00:00 2001 From: "Lukacs T. Berki" Date: Thu, 18 Mar 2021 10:03:39 +0100 Subject: [PATCH] Add comment about what -N -l does. This was added in aosp/1642084 and I forgot to address a comment. Test: "m nothing". Change-Id: I0fd2f2e8eeaa5b316cf19c3b426f708f2587e60f --- bootstrap/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/bootstrap/config.go b/bootstrap/config.go index 5cd1712..6be0111 100644 --- a/bootstrap/config.go +++ b/bootstrap/config.go @@ -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 ""