[U-Boot] [PATCH v3 3/6] config.mk: Check for -fstack-usage support

Tom Rini trini at ti.com
Tue Feb 14 18:29:38 CET 2012


Acked-by: Mike Frysinger <vapier at gentoo.org>
Signed-off-by: Tom Rini <trini at ti.com>

---
Changes for v2:
   - Move check from arch/arm/config.mk to config.mk, reword summary

Changes for v3:
   - Drop trailing comma in cc-option call (per Mike Frysinger)
---
 config.mk |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/config.mk b/config.mk
index 596ba93..fa33e62 100644
--- a/config.mk
+++ b/config.mk
@@ -232,6 +232,10 @@ CFLAGS_WARN := $(call cc-option,-Wno-format-nonliteral) \
 	       $(call cc-option,-Wno-format-security)
 CFLAGS += $(CFLAGS_WARN)
 
+# Report stack usage if supported
+CFLAGS_STACK := $(call cc-option,-fstack-usage)
+CFLAGS += $(CFLAGS_STACK)
+
 # $(CPPFLAGS) sets -g, which causes gcc to pass a suitable -g<format>
 # option to the assembler.
 AFLAGS_DEBUG :=
-- 
1.7.0.4



More information about the U-Boot mailing list