mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
c2a1d5d306
Remove arch/sparc/cpu/{leon2,leon3}/config.mk and move duplicated defines of -fPIC to arch/sparc/config.mk. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Daniel Hellstrom <daniel@gaisler.com>
19 lines
420 B
Makefile
19 lines
420 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__
|
|
|
|
PLATFORM_RELFLAGS += -fPIC
|