From 9c3c58d641a0aa96ba4ce6a6097a1ac858929394 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Mon, 6 May 2013 05:54:52 +0000 Subject: [PATCH] Had "-fno-omit-frame-pointer" assuming it would improve gdb's ability to find stack frames (which it doesn't). Reset to "-fomit-frame-pointer" to generate shorter code --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d418a3e..727b9ff 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ CFLAGS=-mcpu=5474\ -Wno-multichar\ -Winline\ -O \ - -fno-omit-frame-pointer\ + -fomit-frame-pointer\ -fno-strict-aliasing\ -ffreestanding\ -fleading-underscore\