U-Boot: disable optimisation to help debugging

* the U-Boot support code is yet unfinished and needs more debugging.
This commit is contained in:
François Revol
2012-08-15 21:28:30 +02:00
parent 1026b0a1a7
commit 091ba358a8
+2 -2
View File
@@ -18,8 +18,8 @@ UsePrivateHeaders [ FDirName kernel arch $(TARGET_ARCH) board $(TARGET_BOOT_BOAR
local defines = _BOOT_MODE ;
defines = [ FDefines $(defines) ] ;
SubDirCcFlags $(defines) -g3 ;
SubDirC++Flags $(defines) -fno-rtti -g3 ;
SubDirCcFlags $(defines) -g3 -O0 ;
SubDirC++Flags $(defines) -fno-rtti -g3 -O0 ;
}
# we fake NetBSD since we don't have an OS ID yet for uimage,