Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
wdenk | 39f0e5f | 2002-08-14 20:30:46 +0000 | [diff] [blame] | 2 | # |
Wolfgang Denk | fa11dbe | 2010-11-21 16:34:05 +0100 | [diff] [blame] | 3 | # (C) Copyright 2000-2010 |
wdenk | 39f0e5f | 2002-08-14 20:30:46 +0000 | [diff] [blame] | 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | 39f0e5f | 2002-08-14 20:30:46 +0000 | [diff] [blame] | 5 | |
Wolfgang Denk | 8ae86b7 | 2011-02-04 14:25:17 +0100 | [diff] [blame] | 6 | CONFIG_STANDALONE_LOAD_ADDR ?= 0x40000 |
Haiying Wang | 6dc1eceb | 2011-02-22 16:38:05 -0500 | [diff] [blame] | 7 | LDFLAGS_FINAL += --gc-sections |
Chris Packham | 039b773 | 2014-09-10 16:03:10 +1200 | [diff] [blame] | 8 | LDFLAGS_FINAL += --bss-plt |
Rob Herring | 7682a99 | 2015-03-17 15:28:55 -0500 | [diff] [blame] | 9 | PLATFORM_RELFLAGS += -fpic -mrelocatable -ffunction-sections \ |
| 10 | -fdata-sections -mcall-linux |
| 11 | |
Tom Rini | b9f06b3 | 2015-10-17 08:04:11 -0400 | [diff] [blame] | 12 | PF_CPPFLAGS_POWERPC := $(call cc-option,-fno-ira-hoist-pressure,) |
| 13 | PLATFORM_CPPFLAGS += -D__powerpc__ -ffixed-r2 -m32 $(PF_CPPFLAGS_POWERPC) |
Tom Rini | 587e4a4 | 2020-03-27 11:46:27 -0400 | [diff] [blame] | 14 | KBUILD_LDFLAGS += -m32 -melf32ppclinux |
Shinya Kuribayashi | 6b971c7 | 2008-08-31 05:37:04 +0900 | [diff] [blame] | 15 | |
| 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 | |
| 23 | ifeq ($(CROSS_COMPILE),powerpc-netbsd-) |
| 24 | PLATFORM_CPPFLAGS+= -D__PPC__ |
| 25 | endif |
| 26 | ifeq ($(CROSS_COMPILE),powerpc-openbsd-) |
| 27 | PLATFORM_CPPFLAGS+= -D__PPC__ |
| 28 | endif |
Scott Wood | 6ec63f4 | 2012-09-20 19:10:01 -0500 | [diff] [blame] | 29 | |
| 30 | # Only test once |
| 31 | ifneq ($(CONFIG_SPL_BUILD),y) |
Masahiro Yamada | d57d60c | 2014-03-05 17:49:23 +0900 | [diff] [blame] | 32 | archprepare: 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 |
| 37 | checkgcc4: |
Tom Rini | 6e2f153 | 2016-01-19 20:39:02 -0500 | [diff] [blame] | 38 | @if test "$(call cc-name)" = "gcc" -a \ |
| 39 | $(call cc-version) -lt 0400; then \ |
Masahiro Yamada | d57d60c | 2014-03-05 17:49:23 +0900 | [diff] [blame] | 40 | echo -n '*** Your GCC is too old, please upgrade to GCC 4.x or newer'; \ |
| 41 | false; \ |
| 42 | fi |
Scott Wood | 6ec63f4 | 2012-09-20 19:10:01 -0500 | [diff] [blame] | 43 | endif |