mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-13 23:02:59 +00:00
9b6e2c363f
The syntax CROSS_COMIPLE ?= <cross_compiler_prefix> does not work because config.mk is parsed after exporting CROSS_COMPILE. Like Linux Kernel's arch/$(ARCH)/Makefile, we must write as follows: ifeq ($(CROSS_COMPILE),) CROSS_COMPILE := <cross_compiler_prefix> endif Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
18 lines
394 B
Makefile
18 lines
394 B
Makefile
#
|
|
# (C) Copyright 2011
|
|
# Julius Baxter <julius@opencores.org>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifeq ($(CROSS_COMPILE),)
|
|
CROSS_COMPILE := or32-elf-
|
|
endif
|
|
|
|
# r10 used for global object pointer, already set in OR32 GCC but just to be
|
|
# clear
|
|
PLATFORM_CPPFLAGS += -DCONFIG_OPENRISC -D__OR1K__ -ffixed-r10
|
|
|
|
CONFIG_STANDALONE_LOAD_ADDR ?= 0x40000
|
|
|
|
LDSCRIPT ?= $(SRCTREE)/$(CPUDIR)/u-boot.lds
|