mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-26 06:30:39 +00:00
3a649407a4
Today, we have cases where we wish to build all of U-Boot in Thumb2 mode for various reasons. We also have cases where we only build SPL in Thumb2 mode due to size constraints and wish to build the rest of the system in ARM mode. So in this migration we introduce a new symbol as well, SPL_SYS_THUMB_BUILD to control if we build everything or just SPL (or in theory, just U-Boot) in Thumb2 mode. Signed-off-by: Tom Rini <trini@konsulko.com> Acked-by: Siarhei Siamashka <siarhei.siamashka@gmail.com>
21 lines
396 B
Makefile
21 lines
396 B
Makefile
#
|
|
# (C) Copyright 2000-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
extra-y = start.o
|
|
|
|
obj-y += cpu.o
|
|
obj-$(CONFIG_USE_IRQ) += interrupts.o
|
|
|
|
obj-$(CONFIG_EP93XX) += ep93xx/
|
|
obj-$(CONFIG_IMX) += imx/
|
|
obj-$(CONFIG_S3C24X0) += s3c24x0/
|
|
|
|
# some files can only build in ARM mode
|
|
|
|
ifdef CONFIG_$(SPL_)SYS_THUMB_BUILD
|
|
CFLAGS_cpu.o := -marm
|
|
endif
|