[coreboot] r3190 - trunk/payloads/libpayload

svn at coreboot.org svn at coreboot.org
Thu Mar 27 20:11:44 CET 2008


Author: uwe
Date: 2008-03-27 20:11:44 +0100 (Thu, 27 Mar 2008)
New Revision: 3190

Modified:
   trunk/payloads/libpayload/Makefile
Log:
Drop -Os in libpayload for now, it causes run-time problems for some
strange reason (broken curses/VGA display, maybe others).

It'll be re-enabled when we fixed that.

Signed-off-by: Uwe Hermann <uwe at hermann-uwe.de>
Acked-by: Uwe Hermann <uwe at hermann-uwe.de>



Modified: trunk/payloads/libpayload/Makefile
===================================================================
--- trunk/payloads/libpayload/Makefile	2008-03-25 19:43:01 UTC (rev 3189)
+++ trunk/payloads/libpayload/Makefile	2008-03-27 19:11:44 UTC (rev 3190)
@@ -61,7 +61,8 @@
 
 INCLUDES := -I./include
 INCLUDES += -I$(shell $(CC) -print-search-dirs | head -n 1 | cut -d' ' -f2)include
-CFLAGS := -Wall -Werror -Os -fno-stack-protector -nostdinc $(INCLUDES)
+# TODO: Re-add -Os as soon as we find out why it caused problems.
+CFLAGS := -Wall -Werror -fno-stack-protector -nostdinc $(INCLUDES)
 
 libpayload.a: $(TARGETS-y)
 	$(AR) rc $@ $(TARGETS-y)





More information about the coreboot mailing list