From: Austin Clements Date: Fri, 24 Jun 2011 18:20:51 +0000 (-0400) Subject: Add -fno-omit-frame-pointer to compile flags. X-Git-Url: https://git.devinivas.org/?a=commitdiff_plain;h=97657d703f7a92a088b400980c17249f34640a5e;p=cs3210-lab0.git Add -fno-omit-frame-pointer to compile flags. At some point between gcc 4.4 and 4.6, omitting the frame pointer became default if any -O is specified. getcallerpcs relies on the frame pointer, so bring it back. --- diff --git a/Makefile b/Makefile index 7000fac..3487aa4 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,7 @@ AS = $(TOOLPREFIX)gas LD = $(TOOLPREFIX)ld OBJCOPY = $(TOOLPREFIX)objcopy OBJDUMP = $(TOOLPREFIX)objdump -CFLAGS = -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror +CFLAGS = -fno-pic -static -fno-builtin -fno-strict-aliasing -O2 -Wall -MD -ggdb -m32 -Werror -fno-omit-frame-pointer CFLAGS += $(shell $(CC) -fno-stack-protector -E -x c /dev/null >/dev/null 2>&1 && echo -fno-stack-protector) ASFLAGS = -m32 -gdwarf-2 # FreeBSD ld wants ``elf_i386_fbsd''