[Cooker] warning: gcc3.2 ignores -fomit-frame-pointer, silently

2002-09-23 Thread Guido Draheim
It seems the gcc3.2 ignores -fomit-frame-pointer, without giving any diagnostics about it. I had noticed it with some of my software *breaking* because of that as some assembler parts were trying to access %ebp then. This may affect the mdk9 *kernel* itself - usally the linux kernel should be

Re: [Cooker] warning: gcc3.2 ignores -fomit-frame-pointer, silently

2002-09-23 Thread David Walser
Are you 100% sure? The patch from kernel 2.4.18 to 2.4.19 has this: CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes -Wno-trigraphs -O2 \ - -fomit-frame-pointer -fno-strict-aliasing -fno-common + -fno-strict-aliasing -fno-common +ifndef CONFIG_FRAME_POINTER +CFLAGS +=

Re: Fw: Re: [Cooker] warning: gcc3.2 ignores -fomit-frame-pointer, silently

2002-09-23 Thread Guido Draheim
PROTECTED] Subject: Re: [Cooker] warning: gcc3.2 ignores -fomit-frame-pointer, silently Are you 100% sure? The patch from kernel 2.4.18 to 2.4.19 has this: CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes -Wno-trigraphs -O2 \ - -fomit-frame-pointer -fno-strict-aliasing -fno