mirror of
https://xff.cz/git/u-boot/
synced 2025-08-31 08:12:06 +02:00
kbuild: use Linux Kernel build scripts
Now we are ready to switch over to real Kbuild. This commit disables temporary scripts: scripts/{Makefile.build.tmp, Makefile.host.tmp} and enables real Kbuild scripts: scripts/{Makefile.build,Makefile.host,Makefile.lib}. This switch is triggered by the line in scripts/Kbuild.include -build := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build.tmp obj +build := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build obj We need to adjust some build scripts for U-Boot. But smaller amount of modification is preferable. Additionally, we need to fix compiler flags which are locally added or removed. In Kbuild, it is not allowed to change CFLAGS locally. Instead, ccflags-y, asflags-y, cppflags-y, CFLAGS_$(basetarget).o, CFLAGS_REMOVE_$(basetarget).o are prepared for that purpose. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Tested-by: Gerhard Sittig <gsi@denx.de>
This commit is contained in:
committed by
Tom Rini
parent
22433fc54b
commit
6825a95b0b
13
config.mk
13
config.mk
@@ -58,19 +58,10 @@ RELFLAGS= $(PLATFORM_RELFLAGS)
|
||||
|
||||
OBJCFLAGS += --gap-fill=0xff
|
||||
|
||||
CPPFLAGS = $(KBUILD_CPPFLAGS) $(RELFLAGS)
|
||||
CPPFLAGS += $(UBOOTINCLUDE)
|
||||
CPPFLAGS += $(NOSTDINC_FLAGS) -pipe $(PLATFORM_CPPFLAGS)
|
||||
|
||||
CFLAGS := $(KBUILD_CFLAGS) $(CPPFLAGS)
|
||||
CPPFLAGS = $(RELFLAGS)
|
||||
CPPFLAGS += -pipe $(PLATFORM_CPPFLAGS)
|
||||
|
||||
BCURDIR = $(subst $(SRCTREE)/,,$(CURDIR:$(obj)%=%))
|
||||
|
||||
AFLAGS := $(KBUILD_AFLAGS) $(CPPFLAGS)
|
||||
|
||||
LDFLAGS += $(PLATFORM_LDFLAGS)
|
||||
LDFLAGS_FINAL += -Bstatic
|
||||
|
||||
#########################################################################
|
||||
|
||||
export PLATFORM_CPPFLAGS PLATFORM_RELFLAGS CPPFLAGS CFLAGS AFLAGS
|
||||
|
Reference in New Issue
Block a user