Author: wmb Date: Tue Aug 17 21:27:32 2010 New Revision: 1939 URL: http://tracker.coreboot.org/trac/openfirmware/changeset/1939
Log: x86 - memtest86 - Completed the process begun by svn 1938 by reverted the change in svn 1937 and going back to -Os . I verified that -Os now works with both GCC 4.2.1 and GCC 4.4.3 (-O1 also works with both).
Modified: clients/memtest86/Makefile
Modified: clients/memtest86/Makefile ============================================================================== --- clients/memtest86/Makefile Tue Aug 17 21:10:51 2010 (r1938) +++ clients/memtest86/Makefile Tue Aug 17 21:27:32 2010 (r1939) @@ -28,9 +28,8 @@ CC=gcc # # gcc compiler options, these settings should suffice -# (It is tempting to use -Os, but that causes runtime failures when compiled with GCC >4.2) # -CCFLAGS=-Wall -march=i486 -m32 -O1 -fomit-frame-pointer -fno-builtin -ffreestanding +CCFLAGS=-Wall -march=i486 -m32 -Os -fomit-frame-pointer -fno-builtin -ffreestanding CCFLAGS += -fno-stack-protector CCFLAGS += $(DEFINES)
openfirmware@openfirmware.info