From c58a3a8a1a0b7b90b2840e3dfda795c39e459b04 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 --- BaS_gcc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaS_gcc/Makefile b/BaS_gcc/Makefile index d418a3e..727b9ff 100644 --- a/BaS_gcc/Makefile +++ b/BaS_gcc/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\