]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/config.mk
arm: put .hash, .got.plt and .machine_param back in binaries
[people/ms/u-boot.git] / arch / arm / config.mk
CommitLineData
39f0e5f8
WD
1#
2# (C) Copyright 2000-2002
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
1a459660 5# SPDX-License-Identifier: GPL-2.0+
39f0e5f8
WD
6#
7
1ea6bcd8
MF
8CROSS_COMPILE ?= arm-linux-
9
8ae86b76 10ifndef CONFIG_STANDALONE_LOAD_ADDR
806d2792 11ifneq ($(CONFIG_OMAP_COMMON),)
8ae86b76 12CONFIG_STANDALONE_LOAD_ADDR = 0x80300000
262ae0a6 13else
8ae86b76 14CONFIG_STANDALONE_LOAD_ADDR = 0xc100000
262ae0a6
MF
15endif
16endif
17
fd725691 18LDFLAGS_FINAL += --gc-sections
3102274d 19PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections \
0ae76531
DF
20 -fno-common -ffixed-r9
21PLATFORM_RELFLAGS += $(call cc-option, -msoft-float)
fd725691 22
959daa21
SG
23# Support generic board on ARM
24__HAVE_ARCH_GENERIC_BOARD := y
25
39f0e5f8 26PLATFORM_CPPFLAGS += -DCONFIG_ARM -D__ARM__
10a451cd 27
5356f545
A
28# Choose between ARM/Thumb instruction sets
29ifeq ($(CONFIG_SYS_THUMB_BUILD),y)
30PF_CPPFLAGS_ARM := $(call cc-option, -mthumb -mthumb-interwork,\
31 $(call cc-option,-marm,)\
32 $(call cc-option,-mno-thumb-interwork,)\
33 )
34else
35PF_CPPFLAGS_ARM := $(call cc-option,-marm,) \
36 $(call cc-option,-mno-thumb-interwork,)
37endif
f772acf8 38
06a119a0
TR
39# Only test once
40ifneq ($(CONFIG_SPL_BUILD),y)
41ALL-$(CONFIG_SYS_THUMB_BUILD) += checkthumb
42endif
43
f772acf8
WD
44# Try if EABI is supported, else fall back to old API,
45# i. e. for example:
46# - with ELDK 4.2 (EABI supported), use:
5356f545 47# -mabi=aapcs-linux
f772acf8 48# - with ELDK 4.1 (gcc 4.x, no EABI), use:
5356f545 49# -mabi=apcs-gnu
f772acf8 50# - with ELDK 3.1 (gcc 3.x), use:
5356f545 51# -mapcs-32
cca4e4ae 52PF_CPPFLAGS_ABI := $(call cc-option,\
5356f545 53 -mabi=aapcs-linux,\
cca4e4ae
WD
54 $(call cc-option,\
55 -mapcs-32,\
f772acf8 56 $(call cc-option,\
cca4e4ae
WD
57 -mabi=apcs-gnu,\
58 )\
5356f545 59 )\
cca4e4ae
WD
60 )
61PLATFORM_CPPFLAGS += $(PF_CPPFLAGS_ARM) $(PF_CPPFLAGS_ABI)
f772acf8
WD
62
63# For EABI, make sure to provide raise()
64ifneq (,$(findstring -mabi=aapcs-linux,$(PLATFORM_CPPFLAGS)))
5253418a
A
65# This file is parsed many times, so the string may get added multiple
66# times. Also, the prefix needs to be different based on whether
67# CONFIG_SPL_BUILD is defined or not. 'filter-out' the existing entry
68# before adding the correct one.
69ifdef CONFIG_SPL_BUILD
70PLATFORM_LIBS := $(SPLTREE)/arch/arm/lib/eabi_compat.o \
71 $(filter-out %/arch/arm/lib/eabi_compat.o, $(PLATFORM_LIBS))
72else
73PLATFORM_LIBS := $(OBJTREE)/arch/arm/lib/eabi_compat.o \
74 $(filter-out %/arch/arm/lib/eabi_compat.o, $(PLATFORM_LIBS))
f772acf8
WD
75endif
76endif
92d5ecba 77
92d5ecba 78# needed for relocation
a4594e41 79LDFLAGS_u-boot += -pie
0f20bb60
AM
80
81#
82# FIXME: binutils versions < 2.22 have a bug in the assembler where
83# branches to weak symbols can be incorrectly optimized in thumb mode
84# to a short branch (b.n instruction) that won't reach when the symbol
85# gets preempted
86#
87# http://sourceware.org/bugzilla/show_bug.cgi?id=12532
88#
89ifeq ($(CONFIG_SYS_THUMB_BUILD),y)
90ifeq ($(GAS_BUG_12532),)
91export GAS_BUG_12532:=$(shell if [ $(call binutils-version) -lt 0222 ] ; \
92 then echo y; else echo n; fi)
93endif
94ifeq ($(GAS_BUG_12532),y)
95PLATFORM_RELFLAGS += -fno-optimize-sibling-calls
96endif
97endif
c37980c3 98
c37980c3 99ifneq ($(CONFIG_SPL_BUILD),y)
373d7983
JH
100# Check that only R_ARM_RELATIVE relocations are generated.
101ALL-y += checkarmreloc
102# The movt / movw can hardcode 16 bit parts of the addresses in the
103# instruction. Relocation is not supported for that case, so disable
104# such usage by requiring word relocations.
105PLATFORM_CPPFLAGS += $(call cc-option, -mword-relocations)
c37980c3 106endif
47ed5dd0
AA
107
108# limit ourselves to the sections we want in the .bin.
0ae76531
DF
109ifdef CONFIG_ARM64
110OBJCFLAGS += -j .text -j .rodata -j .data -j .u_boot_list -j .rela.dyn
111else
b02bfc4d 112OBJCFLAGS += -j .text -j .rodata -j .hash -j .data -j .got.plt -j .u_boot_list -j .rel.dyn
0ae76531 113endif