blob: 307ca65745c8615445e6d148a9c87468d6dbd10f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
wdenk39f0e5f2002-08-14 20:30:46 +00002#
Wolfgang Denkfa11dbe2010-11-21 16:34:05 +01003# (C) Copyright 2000-2010
wdenk39f0e5f2002-08-14 20:30:46 +00004# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk39f0e5f2002-08-14 20:30:46 +00005
Wolfgang Denk8ae86b72011-02-04 14:25:17 +01006CONFIG_STANDALONE_LOAD_ADDR ?= 0x40000
Haiying Wang6dc1eceb2011-02-22 16:38:05 -05007LDFLAGS_FINAL += --gc-sections
Chris Packham039b7732014-09-10 16:03:10 +12008LDFLAGS_FINAL += --bss-plt
Rob Herring7682a992015-03-17 15:28:55 -05009PLATFORM_RELFLAGS += -fpic -mrelocatable -ffunction-sections \
10-fdata-sections -mcall-linux
11
Tom Rinib9f06b32015-10-17 08:04:11 -040012PF_CPPFLAGS_POWERPC := $(call cc-option,-fno-ira-hoist-pressure,)
13PLATFORM_CPPFLAGS += -D__powerpc__ -ffixed-r2 -m32 $(PF_CPPFLAGS_POWERPC)
Tom Rini587e4a42020-03-27 11:46:27 -040014KBUILD_LDFLAGS += -m32 -melf32ppclinux
Shinya Kuribayashi6b971c72008-08-31 05:37:04 +090015
16#
17# When cross-compiling on NetBSD, we have to define __PPC__ or else we
18# will pick up a va_list declaration that is incompatible with the
19# actual argument lists emitted by the compiler.
20#
21# [Tested on NetBSD/i386 1.5 + cross-powerpc-netbsd-1.3]
22
23ifeq ($(CROSS_COMPILE),powerpc-netbsd-)
24PLATFORM_CPPFLAGS+= -D__PPC__
25endif
26ifeq ($(CROSS_COMPILE),powerpc-openbsd-)
27PLATFORM_CPPFLAGS+= -D__PPC__
28endif
Scott Wood6ec63f42012-09-20 19:10:01 -050029
30# Only test once
31ifneq ($(CONFIG_SPL_BUILD),y)
Masahiro Yamadad57d60c2014-03-05 17:49:23 +090032archprepare: checkgcc4
33
34# GCC 3.x is reported to have problems generating the type of relocation
35# that U-Boot wants.
36# See http://lists.denx.de/pipermail/u-boot/2012-September/135156.html
37checkgcc4:
Tom Rini6e2f1532016-01-19 20:39:02 -050038 @if test "$(call cc-name)" = "gcc" -a \
39 $(call cc-version) -lt 0400; then \
Masahiro Yamadad57d60c2014-03-05 17:49:23 +090040 echo -n '*** Your GCC is too old, please upgrade to GCC 4.x or newer'; \
41 false; \
42 fi
Scott Wood6ec63f42012-09-20 19:10:01 -050043endif