mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
9d3918f3fd
When seaboard_defconfig is compiled with LTO, the compiler complains about some instructions not being supported in ARM mode. This is caused by arch/arm/mach-tegra/tegra20/warmboot_avp.c having different CFLAGS declared in Makefile. This file needs to be compiled without LTO. Fix this by removing -flto for this file. Signed-off-by: Marek Behún <marek.behun@nic.cz> Reviewed-by: Simon Glass <sjg@chromium.org>
18 lines
545 B
Makefile
18 lines
545 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2010,2011 Nvidia Corporation.
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += cpu.o
|
|
endif
|
|
|
|
# The AVP is ARMv4T architecture so we must use special compiler
|
|
# flags for any startup files it might use.
|
|
CFLAGS_warmboot_avp.o = -march=armv4t -U__LINUX_ARM_ARCH__ \
|
|
-D__LINUX_ARM_ARCH__=4
|
|
CFLAGS_REMOVE_warmboot_avp.o := $(LTO_CFLAGS)
|
|
|
|
obj-y += clock.o funcmux.o pinmux.o
|
|
obj-$(CONFIG_TEGRA_LP0) += warmboot.o crypto.o warmboot_avp.o
|
|
obj-$(CONFIG_TEGRA_CLOCK_SCALING) += emc.o
|
|
obj-$(CONFIG_TEGRA_PMU) += pmu.o
|