soc/intel: Unify `timestamp.inc`
[coreboot.git] / toolchain.inc
blob5501c32e63ab7469b18c0f792a1b0a0bb019da8c
1 ##
2 ## This file is part of the coreboot project.
3 ##
4 ## Copyright (C) 2014 Google Inc
5 ##
6 ## This program is free software; you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation; version 2 of the License.
9 ##
10 ## This program is distributed in the hope that it will be useful,
11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ## GNU General Public License for more details.
16 # ccache integration
17 ifeq ($(CONFIG_CCACHE),y)
19 CCACHE:=$(word 1,$(wildcard $(addsuffix /ccache,$(subst :, ,$(PATH)))))
20 ifeq ($(CCACHE),)
21 $(error ccache selected, but not found in PATH)
22 endif
24 export CCACHE_COMPILERCHECK=content
25 export CCACHE_BASEDIR=$(top)
27 $(foreach arch,$(ARCH_SUPPORTED), \
28         $(eval CC_$(arch):=$(CCACHE) $(CC_$(arch))))
30 HOSTCC:=$(CCACHE) $(HOSTCC)
31 HOSTCXX:=$(CCACHE) $(HOSTCXX)
32 ROMCC=$(CCACHE) $(ROMCC_BIN)
33 endif
35 # scan-build integration
36 ifneq ($(CCC_ANALYZER_OUTPUT_FORMAT),)
38 ifeq ($(CCC_ANALYZER_ANALYSIS),)
39 export CCC_ANALYZER_ANALYSIS := -analyzer-opt-analyze-headers
40 endif
42 $(foreach arch,$(ARCH_SUPPORTED), \
43         $(eval CC_$(arch):=CCC_CC="$(CC_$(arch))" $(CC) ))
45 HOSTCC:=CCC_CC="$(HOSTCC)" $(CC)
46 HOSTCXX:=CCC_CXX="$(HOSTCXX)" $(CXX)
47 ROMCC=CCC_CC="$(ROMCC_BIN)" $(CC)
48 endif
50 COREBOOT_STANDARD_STAGES := bootblock verstage romstage ramstage
52 ARCHDIR-i386    := x86
53 ARCHDIR-x86_32  := x86
54 ARCHDIR-x86_64  := x86
55 ARCHDIR-arm     := arm
56 ARCHDIR-arm64   := arm64
57 ARCHDIR-riscv   := riscv
58 ARCHDIR-mips    := mips
59 ARCHDIR-power8  := power8
61 CFLAGS_arm      +=
62 CFLAGS_arm64    += -mgeneral-regs-only
63 CFLAGS_mips     += -mips32r2 -G 0 -mno-abicalls -fno-pic
64 CFLAGS_riscv    +=
65 CFLAGS_x86_32   +=
66 CFLAGS_x86_64   += -mcmodel=large -mno-red-zone
67 CFLAGS_power8   +=
69 # Some boards only provide 2K stacks, so storing lots of data there leads to
70 # problems. Since C rules don't allow us to statically determine the maximum
71 # stack use, we use 1.5K as heuristic, assuming that we typically have lots
72 # of tiny stack frames and the odd large one.
74 # Store larger buffers in BSS, use MAYBE_STATIC to share code with __PRE_RAM__
75 # on x86.
76 # Since GCCs detection of dynamic array bounds unfortunately seems to be
77 # very basic, you'll sometimes have to use a static upper bound for the
78 # size and an assert() to make sure it's honored (see gpio_base3_value()
79 # for an example).
80 # (If you absolutely need a larger stack frame and are 100% sure it cannot
81 # cause problems, you can whitelist it with #pragma diagnostic.)
82 CFLAGS_arm      += -Wstack-usage=1536
83 CFLAGS_arm64    += -Wstack-usage=1536
84 CFLAGS_mips     += -Wstack-usage=1536
85 CFLAGS_riscv    += -Wstack-usage=1536
86 CFLAGS_power8   += -Wstack-usage=1536
88 toolchain_to_dir = \
89         $(foreach arch,$(ARCH_SUPPORTED),\
90         $(eval CPPFLAGS_$(arch) += \
91         -Isrc/arch/$(ARCHDIR-$(arch))/include))
93 # set_stage_toolchain: Decides the toolchain to be used by every stage
94 # E.g.: If bootblock is x86_32, it sets ARCH-BOOTBLOCK-y = x86_32, whereas
95 # ARCH-BOOTBLOCK-n = armv7. Then, ARCH-BOOTBLOCK-y can be used anywhere to
96 # decide the compiler toolchain for bootblock stage
97 # This step is essential for initializing the toolchain for coreboot standard
98 # stages i.e. bootblock, romstage and ramstage, since it acts as the second
99 # parameter to create_class_compiler below in init_standard_toolchain
100 map_stage = $(strip $(if $(MAP-$(1)),$(MAP-$(1)),$(1)))
101 set_stage_toolchain= \
102         $(foreach arch,$(ARCH_SUPPORTED), \
103         $(eval ARCH-$(1)-$($(shell \
104                 echo CONFIG_ARCH_$(call map_stage,$(1))_$(arch) | \
105                 tr '[:lower:]' '[:upper:]')) := $(arch)))
107 # standard-archs: Tell which architectures are used by the standard stages.
108 standard-archs = $(sort $(foreach stagearch, \
109                           $(patsubst %,ARCH-%-y,$(COREBOOT_STANDARD_STAGES)), \
110                           $($(stagearch))))
112 # create_class_compiler: Used to create compiler tool set for
113 # special classes
114 # @1: special class
115 # @2: compiler set to be used
116 # e.g.: smm special class uses i386 as compiler set
117 define create_class_compiler
118 $(if $(2),,$(warning *** The toolchain architecture for $(1) is unknown.) \
119         $(error Check your .config file for CONFIG_ARCH_$(1)_* settings))
120 CC_$(1) := $(CC_$(2))
121 LD_$(1) := $(LD_$(2))
122 NM_$(1) := $(NM_$(2))
123 AR_$(1) := $(AR_$(2))
124 GNATBIND_$(1) := $(GNATBIND_$(2))
125 OBJCOPY_$(1) := $(OBJCOPY_$(2))
126 OBJDUMP_$(1) := $(OBJDUMP_$(2))
127 STRIP_$(1) := $(STRIP_$(2))
128 READELF_$(1) := $(READELF_$(2))
129 CFLAGS_$(1) = $$(CFLAGS_common) $$(CFLAGS_$(2))
130 ADAFLAGS_$(1) = --RTS=$$(obj)/libgnat-$(2)/ $$(ADAFLAGS_common) $$(ADAFLAGS_$(2))
131 CPPFLAGS_$(1) = $$(CPPFLAGS_common) $$(CPPFLAGS_$(2)) -D__ARCH_$(2)__
132 COMPILER_RT_$(1) := $$(COMPILER_RT_$(2))
133 COMPILER_RT_FLAGS_$(1) := $$(COMPILER_RT_FLAGS_$(2))
134 LDFLAGS_$(1) = $$(LDFLAGS_common) $$(LDFLAGS_$(2))
135 endef
137 # define_class: Allows defining any program as dynamic class and compiler tool
138 # set for the same based on the architecture for which the program is to be
139 # compiled
140 # @1: program (class name)
141 # @2: architecture for which the program needs to be compiled
142 # IMP: Ensure that define_class is called before any .c or .S files are added to
143 # the class of the program. Check subdirs-y for order of subdirectory inclusions
144 define define_class
145 classes-y += $(1)
146 $(eval $(call create_class_compiler,$(1),$(2)))
147 endef
149 # initialize standard toolchain (CC,AS and others) for give stage
150 # @1 : stage for which the toolchain is to be initialized
151 init_standard_toolchain = \
152         $(eval $(call set_stage_toolchain,$(1))) \
153         $(eval $(call create_class_compiler,$(1),$(ARCH-$(1)-y)))
155 init_stages = \
156         $(foreach stage,$(COREBOOT_STANDARD_STAGES), \
157         $(eval $(call init_standard_toolchain,$(stage))))
159 $(eval $(call toolchain_to_dir))
161 $(call init_stages)
163 # Test for coreboot toolchain (except when explicitly not requested)
164 ifneq ($(NOCOMPILE),1)
165 # Only run if we're doing a build (not for tests, kconfig, ...)
166 # rationale: gcc versions by Linux distributions tend to be quite messed up
167 # llvm/clang also needs patches supplied by the coreboot build
168 COMPILERFAIL:=0
169 IASLFAIL:=0
171 ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
172 # Verify that the coreboot toolchain is being used.
173 $(foreach arch,$(sort $(foreach stage,\
174         $(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \
175         $(if $(shell if [ -n "$(CC_$(arch))" ]; then \
176                 $(CC_$(arch)) -v 2>&1 | grep -q "coreboot toolchain" || \
177                 echo not-coreboot; else echo not-coreboot; fi), \
178                 $(eval COMPILERFAIL:=1)\
179                 $(warning The coreboot toolchain for '$(arch)'\
180                         architecture was not found.)))
181 # If iasl doesn't match the current coreboot version, fail the test
182 # TODO: Figure out if iasl is even needed for the build.
183 $(if $(shell if [ -n "$(IASL)" ]; then \
184         $(IASL) -v 2>&1 | grep -q "coreboot toolchain" || \
185         echo not-coreboot; else echo not-coreboot; fi), \
186         $(eval COMPILERFAIL:=1)$(eval IASLFAIL:=1)\
187         $(warning The coreboot toolchain version of iasl \
188                 '$(shell util/crossgcc/buildgcc -s iasl)' was not found))
189 else #$(CONFIG_ANY_TOOLCHAIN)
190 # If the coreboot toolchain isn't being used, verify that there is A toolchain
191 $(foreach arch,$(sort \
192         $(foreach stage,$(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \
193         $(if $(CC_$(arch)),, $(eval COMPILERFAIL:=1) \
194         $(warning No compiler found for '$(arch)' architecture. \
195                 Install one or use the coreboot toolchain?)) )
196 # If iasl isn't present, fail
197 # TODO: Figure out if iasl is even needed for the build.
198 $(if $(IASL),, $(eval COMPILERFAIL:=1)$(eval IASLFAIL:=1) \
199         $(warning iasl not found. \
200                 Please install it or use the coreboot toolchain.))
201 endif
203 # If the compiler check failed, print out warnings
204 ifeq ($(COMPILERFAIL),1)
205 ifneq ($(XGCCPATH),)
206 $(warning )
207 $(warning Path to your toolchain is currently set to '$(XGCCPATH)')
208 endif
209 $(warning )
210 $(warning To build the entire coreboot toolchain: run 'make crossgcc')
211 ifeq ($(IASLFAIL),1)
212 $(warning To build just IASL: run 'make iasl')
213 endif #($(IASLFAIL),1)
214 $(warning For more toolchain build targets: run 'make help_toolchain')
215 $(warning )
216 ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
217 $(warning To try to use any toolchain in your path, \
218         run 'make menuconfig', then select)
219 $(warning the config option: 'General setup', \
220         and 'Allow building with any toolchain')
221 $(warning Note that this is NOT supported.  \
222         Using it means you're on your own.)
223 $(warning )
224 endif #($(CONFIG_ANY_TOOLCHAIN),y)
225 $(error Halting the build)
226 endif #($(COMPILERFAIL),1)
228 endif #($(NOCOMPILE),1)
230 # Run the toolchain version checks if the requested target is 'test-toolchain'
231 # Checks the versions of GCC, binutils, clang, and IASL
232 ifneq ($(MAKECMDGOALS),)
233 ifneq ($(filter test-toolchain,$(MAKECMDGOALS)),)
234 $(foreach arch, $(ARCH_SUPPORTED), \
235         $(if $(shell if [ -n "$(GCC_CC_$(arch))" ]; then \
236                 $(GCC_CC_$(arch)) -v 2>&1 | \
237                 grep -q "$(shell util/crossgcc/buildgcc -s gcc)" || \
238                 echo not-current; fi), \
239                 $(eval COMPILER_OUT_OF_DATE:=1) \
240                 $(warning The coreboot toolchain version of gcc for '$(arch)' \
241                         architecture is not the current version.)) \
242         $(if $(shell if [ -n "$(CLANG_CC_$(arch))" ]; then \
243                 $(CLANG_CC_$(arch)) -v 2>&1 | \
244                 grep -q "$(shell util/crossgcc/buildgcc -s clang)" || \
245                 echo not-current; fi), \
246                 $(eval COMPILER_OUT_OF_DATE:=1)\
247                 $(warning The coreboot toolchain version of clang for \
248                         '$(arch)' architecture is not the current version.)) \
249         $(if $(shell if [ "$(OBJDUMP_$(arch))" != "invalidobjdump" ]; then \
250         $(OBJDUMP_$(arch)) -v 2>&1 | \
251         grep -q "$(shell util/crossgcc/buildgcc -s binutils)" || \
252         echo not-current; fi), \
253                 $(eval COMPILER_OUT_OF_DATE:=1)\
254                 $(warning The coreboot toolchain version of binutils for \
255                         '$(arch)' architecture is not the current version.)) \
257 $(if $(shell if [ -n "$(IASL)" ]; then $(IASL) -v 2>&1 | \
258         grep -q "$(shell util/crossgcc/buildgcc -s iasl)" || \
259         echo not-coreboot; fi), \
260         $(eval COMPILER_OUT_OF_DATE:=1)\
261         $(warning The coreboot toolchain version of iasl \
262                 is not the current version))
263 endif #($(filter crossgcc_check%,$(MAKECMDGOALS)),)
264 endif #($(MAKECMDGOALS),)