mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
90f984e397
CONFIG_${ARCH} is defined by Kconfig. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Reviewed-by: Simon Glass <sjg@chromium.org>
17 lines
392 B
Makefile
17 lines
392 B
Makefile
#
|
|
# (C) Copyright 2007
|
|
# Daniel Hellstrom, Gaisler Research, daniel@gaisler.com
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifeq ($(CROSS_COMPILE),)
|
|
CROSS_COMPILE := sparc-elf-
|
|
endif
|
|
|
|
gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`)
|
|
|
|
CONFIG_STANDALONE_LOAD_ADDR ?= 0x00000000 -L $(gcclibdir) \
|
|
-T $(srctree)/examples/standalone/sparc.lds
|
|
|
|
PLATFORM_CPPFLAGS += -D__sparc__
|