docs/infra/services: Add Gerrit SSH host keys and fingerprints
[coreboot.git] / toolchain.inc
blob893f7d1a11a8e76179dd21e198fbe27d70288e10
1 # SPDX-License-Identifier: GPL-2.0-only
3 # ccache integration
4 ifeq ($(CONFIG_CCACHE),y)
6 CCACHE:=$(word 1,$(wildcard $(addsuffix /ccache,$(subst :, ,$(PATH)))))
7 ifeq ($(CCACHE),)
8 $(error ccache selected, but not found in PATH)
9 endif
11 export CCACHE_COMPILERCHECK=content
12 export CCACHE_BASEDIR=$(top)
14 $(foreach arch,$(ARCH_SUPPORTED), \
15         $(eval CC_$(arch):=$(CCACHE) $(CC_$(arch))))
17 HOSTCC:=$(CCACHE) $(HOSTCC)
18 HOSTCXX:=$(CCACHE) $(HOSTCXX)
19 endif
21 # scan-build integration
22 ifneq ($(CCC_ANALYZER_OUTPUT_FORMAT),)
24 ifeq ($(CCC_ANALYZER_ANALYSIS),)
25 export CCC_ANALYZER_ANALYSIS := -analyzer-opt-analyze-headers
26 endif
28 $(foreach arch,$(ARCH_SUPPORTED), \
29         $(eval CC_$(arch):=CCC_CC="$(CC_$(arch))" $(CC) ))
31 HOSTCC:=CCC_CC="$(HOSTCC)" $(CC)
32 HOSTCXX:=CCC_CXX="$(HOSTCXX)" $(CXX)
33 endif
35 COREBOOT_STANDARD_STAGES := decompressor bootblock verstage romstage ramstage
36 MAP-decompressor := bootblock
38 ARCHDIR-i386    := x86
39 ARCHDIR-x86_32  := x86
40 ARCHDIR-x86_64  := x86
41 ARCHDIR-arm     := arm
42 ARCHDIR-arm64   := arm64
43 ARCHDIR-riscv   := riscv
44 ARCHDIR-ppc64   := ppc64
46 CFLAGS_arm      +=
47 CFLAGS_arm64    += -mgeneral-regs-only
48 CFLAGS_riscv    +=
49 CFLAGS_x86_32   +=
50 CFLAGS_x86_64   += -mcmodel=large -mno-red-zone
51 CFLAGS_ppc64    +=
53 GCC_ADAFLAGS_arm        +=
54 GCC_ADAFLAGS_arm64      += -mgeneral-regs-only
55 GCC_ADAFLAGS_riscv      +=
56 GCC_ADAFLAGS_x86_32     +=
57 GCC_ADAFLAGS_x86_64     += -mcmodel=large -mno-red-zone
58 GCC_ADAFLAGS_ppc64      +=
60 # Some boards only provide 2K stacks, so storing lots of data there leads to
61 # problems. Since C rules don't allow us to statically determine the maximum
62 # stack use, we use 1.5K as heuristic, assuming that we typically have lots
63 # of tiny stack frames and the odd large one.
65 # Store larger buffers in BSS, use static to share data in cache-as-ram
66 # on x86.
67 # Since GCCs detection of dynamic array bounds unfortunately seems to be
68 # very basic, you'll sometimes have to use a static upper bound for the
69 # size and an assert() to make sure it's honored (see gpio_base3_value()
70 # for an example).
71 # (If you absolutely need a larger stack frame and are 100% sure it cannot
72 # cause problems, you can whitelist it with #pragma diagnostic.)
73 ifeq ($(CONFIG_COMPILER_GCC),y)
74 CFLAGS_arm      += -Wstack-usage=1536
75 CFLAGS_arm64    += -Wstack-usage=1536
76 CFLAGS_riscv    += -Wstack-usage=1536
77 CFLAGS_ppc64    += -Wstack-usage=1536
78 endif
80 toolchain_to_dir = \
81         $(foreach arch,$(ARCH_SUPPORTED),\
82         $(eval CPPFLAGS_$(arch) += \
83         -Isrc/arch/$(ARCHDIR-$(arch))/include))
85 # set_stage_toolchain: Decides the toolchain to be used by every stage
86 # E.g.: If bootblock is x86_32, it sets ARCH-BOOTBLOCK-y = x86_32, whereas
87 # ARCH-BOOTBLOCK-n = armv7. Then, ARCH-BOOTBLOCK-y can be used anywhere to
88 # decide the compiler toolchain for bootblock stage
89 # This step is essential for initializing the toolchain for coreboot standard
90 # stages i.e. bootblock, romstage and ramstage, since it acts as the second
91 # parameter to create_class_compiler below in init_standard_toolchain
92 map_stage = $(strip $(if $(MAP-$(1)),$(MAP-$(1)),$(1)))
93 set_stage_toolchain= \
94         $(foreach arch,$(ARCH_SUPPORTED), \
95         $(eval ARCH-$(1)-$($(shell \
96                 echo CONFIG_ARCH_$(call map_stage,$(1))_$(arch) | \
97                 tr '[:lower:]' '[:upper:]')) := $(arch)))
99 # standard-archs: Tell which architectures are used by the standard stages.
100 standard-archs = $(sort $(foreach stagearch, \
101                           $(patsubst %,ARCH-%-y,$(COREBOOT_STANDARD_STAGES)), \
102                           $($(stagearch))))
104 # create_class_compiler: Used to create compiler tool set for
105 # special classes
106 # @1: special class
107 # @2: compiler set to be used
108 # e.g.: smm special class uses i386 as compiler set
109 define create_class_compiler
110 $(if $(2),,$(warning *** The toolchain architecture for $(1) is unknown.) \
111         $(warning CONFIG_ARCH_$(1)_* settings in $(DOTCONFIG):) \
112         $(error $(shell grep CONFIG_ARCH_$(1)_ $(DOTCONFIG))))
113 CC_$(1) := $(CC_$(2))
114 GCC_$(1) := $(GCC_CC_$(2))
115 LD_$(1) := $(LD_$(2))
116 NM_$(1) := $(NM_$(2))
117 AR_$(1) := $(AR_$(2))
118 GNATBIND_$(1) := $(GNATBIND_$(2))
119 OBJCOPY_$(1) := $(OBJCOPY_$(2))
120 OBJDUMP_$(1) := $(OBJDUMP_$(2))
121 STRIP_$(1) := $(STRIP_$(2))
122 READELF_$(1) := $(READELF_$(2))
123 CFLAGS_$(1) = $$(CFLAGS_common) $$(CFLAGS_$(2))
124 ADAFLAGS_$(1) = --RTS=$$(obj)/libgnat-$(2)/ $$(ADAFLAGS_common) $$(GCC_ADAFLAGS_$(2))
125 CPPFLAGS_$(1) = $$(CPPFLAGS_common) $$(CPPFLAGS_$(2)) -D__ARCH_$(2)__
126 COMPILER_RT_$(1) := $$(COMPILER_RT_$(2))
127 COMPILER_RT_FLAGS_$(1) := $$(COMPILER_RT_FLAGS_$(2))
128 LDFLAGS_$(1) = $$(LDFLAGS_common) $$(LDFLAGS_$(2))
129 endef
131 # define_class: Allows defining any program as dynamic class and compiler tool
132 # set for the same based on the architecture for which the program is to be
133 # compiled
134 # @1: program (class name)
135 # @2: architecture for which the program needs to be compiled
136 # IMP: Ensure that define_class is called before any .c or .S files are added to
137 # the class of the program. Check subdirs-y for order of subdirectory inclusions
138 define define_class
139 classes-y += $(1)
140 $(eval $(call create_class_compiler,$(1),$(2)))
141 endef
143 # initialize standard toolchain (CC,AS and others) for give stage
144 # @1 : stage for which the toolchain is to be initialized
145 init_standard_toolchain = \
146         $(eval $(call set_stage_toolchain,$(1))) \
147         $(eval $(call create_class_compiler,$(1),$(ARCH-$(1)-y)))
149 init_stages = \
150         $(foreach stage,$(COREBOOT_STANDARD_STAGES), \
151         $(eval $(call init_standard_toolchain,$(stage))))
153 $(eval $(call toolchain_to_dir))
155 $(call init_stages)
157 # Test for coreboot toolchain (except when explicitly not requested)
158 ifneq ($(NOCOMPILE),1)
159 # Only run if we're doing a build (not for tests, kconfig, ...)
160 # rationale: gcc versions by Linux distributions tend to be quite messed up
161 # llvm/clang also needs patches supplied by the coreboot build
162 COMPILERFAIL:=0
163 IASLFAIL:=0
165 ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
166 # Verify that the coreboot toolchain is being used.
167 $(foreach arch,$(sort $(foreach stage,\
168         $(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \
169         $(if $(shell if [ -n "$(CC_$(arch))" ]; then \
170                 $(CC_$(arch)) -v 2>&1 | grep -q "coreboot toolchain" || \
171                 echo not-coreboot; else echo not-coreboot; fi), \
172                 $(eval COMPILERFAIL:=1)\
173                 $(warning The coreboot toolchain for '$(arch)'\
174                         architecture was not found.)))
175 # If iasl doesn't match the current coreboot version, fail the test
176 # TODO: Figure out if iasl is even needed for the build.
177 $(if $(shell if [ -n "$(IASL)" ]; then \
178         $(IASL) -v 2>&1 | grep -q "coreboot toolchain" || \
179         echo not-coreboot; else echo not-coreboot; fi), \
180         $(eval COMPILERFAIL:=1)$(eval IASLFAIL:=1)\
181         $(warning The coreboot toolchain version of iasl \
182                 '$(shell util/crossgcc/buildgcc -s iasl)' was not found))
183 else #$(CONFIG_ANY_TOOLCHAIN)
184 # If the coreboot toolchain isn't being used, verify that there is A toolchain
185 $(foreach arch,$(sort \
186         $(foreach stage,$(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \
187         $(if $(CC_$(arch)),, $(eval COMPILERFAIL:=1) \
188         $(warning No compiler found for '$(arch)' architecture. \
189                 Install one or use the coreboot toolchain?)) )
190 # If iasl isn't present, fail
191 # TODO: Figure out if iasl is even needed for the build.
192 $(if $(IASL),, $(eval COMPILERFAIL:=1)$(eval IASLFAIL:=1) \
193         $(warning iasl not found. \
194                 Please install it or use the coreboot toolchain.))
195 endif
197 # If the compiler check failed, print out warnings
198 ifeq ($(COMPILERFAIL),1)
199 ifneq ($(XGCCPATH),)
200 $(warning )
201 $(warning Path to your toolchain is currently set to '$(XGCCPATH)')
202 endif
203 $(warning )
204 $(warning To build the entire coreboot toolchain: run 'make crossgcc')
205 ifeq ($(IASLFAIL),1)
206 $(warning To build just IASL: run 'make iasl')
207 endif #($(IASLFAIL),1)
208 $(warning For more toolchain build targets: run 'make help_toolchain')
209 $(warning )
210 ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
211 $(warning To try to use any toolchain in your path, \
212         run 'make menuconfig', then select)
213 $(warning the config option: 'General setup', \
214         and 'Allow building with any toolchain')
215 $(warning Note that this is NOT supported.  \
216         Using it means you're on your own.)
217 $(warning )
218 endif #($(CONFIG_ANY_TOOLCHAIN),y)
219 $(error Halting the build)
220 endif #($(COMPILERFAIL),1)
222 endif #($(NOCOMPILE),1)
224 # Run the toolchain version checks if the requested target is 'test-toolchain'
225 # Checks the versions of GCC, binutils, clang, and IASL
226 ifneq ($(MAKECMDGOALS),)
227 ifneq ($(filter test-toolchain,$(MAKECMDGOALS)),)
228 $(foreach arch, $(ARCH_SUPPORTED), \
229         $(if $(shell if [ -n "$(GCC_CC_$(arch))" ]; then \
230                 $(GCC_CC_$(arch)) --version 2>&1 | head -n1 | rev | \
231                 cut -d ' ' -f 1 | rev | \
232                 grep -q "$$(util/crossgcc/buildgcc -s gcc)" || \
233                 echo not-current; fi), \
234                 $(eval COMPILER_OUT_OF_DATE:=1) \
235                 $(warning The coreboot toolchain version of gcc for '$(arch)' \
236                         architecture is not the current version.) \
237                 $(warning $(arch) gcc version from buildgcc: \
238                         $(shell util/crossgcc/buildgcc -s gcc)) \
239                 $(warning $(arch) version of gcc executable: \
240                         $(shell $(GCC_CC_$(arch)) --version | head -n1 | \
241                         rev | cut -d ' ' -f 1 | rev))) \
242         $(if $(shell if [ -n "$(CLANG_CC_$(arch))" ]; then \
243                 $(CLANG_CC_$(arch)) --version  2>&1 | \
244                         sed 's/.*clang version/clang version/' | \
245                         head -n1 | cut -d ' ' -f 3 | \
246                 grep -q "$(shell util/crossgcc/buildgcc -s clang)" || \
247                 echo not-current; fi), \
248                 $(eval COMPILER_OUT_OF_DATE:=1) \
249                 $(warning The coreboot toolchain version of clang for \
250                         '$(arch)' architecture is not the current version.) \
251                 $(warning $(arch) clang version from buildgcc: \
252                         $(shell util/crossgcc/buildgcc -s clang)) \
253                 $(warning $(arch) version of clang executable: \
254                         $(shell $(CLANG_CC_$(arch)) --version 2>&1 | \
255                         sed 's/.*clang version/clang version/' | \
256                         head -n1 | cut -d ' ' -f 3))) \
257         $(if $(shell if [ "$(OBJDUMP_$(arch))" != "invalidobjdump" ]; then \
258                 $(OBJDUMP_$(arch)) -v 2>&1 | \
259                 grep -q "$(shell util/crossgcc/buildgcc -s binutils)" || \
260                 echo not-current; fi), \
261                 $(eval COMPILER_OUT_OF_DATE:=1)\
262                 $(warning The coreboot toolchain version of binutils for \
263                         '$(arch)' architecture is not the current version.)) \
265 $(if $(shell if [ -n "$(IASL)" ]; then $(IASL) -v 2>&1 | \
266         grep -q "$(shell util/crossgcc/buildgcc -s iasl)" || \
267         echo not-coreboot; fi), \
268         $(eval COMPILER_OUT_OF_DATE:=1)\
269         $(warning The coreboot toolchain version of iasl \
270                 is not the current version) \
271                 $(warning $(arch) iasl version from buildgcc: \
272                         $(shell util/crossgcc/buildgcc -s iasl)) \
273                 $(warning $(arch) version of iasl executable: \
274                         $(shell $(IASL) -v 2>&1 | \
275                         grep ASL+ | rev | cut -f 1 -d ' ' | rev)))
276 $(eval UPDATED_SUBMODULES:=1)
277 endif #($(filter crossgcc_check%,$(MAKECMDGOALS)),)
278 endif #($(MAKECMDGOALS),)