Makefile.inc: Move payload code to payloads/
[coreboot.git] / toolchain.inc
blobc8911939e80765d1b6071e92c54bf753cc21891d
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 libverstage verstage romstage ramstage
51 MAP-libverstage := verstage
53 ARCHDIR-i386    := x86
54 ARCHDIR-x86_32  := x86
55 ARCHDIR-x86_64  := x86
56 ARCHDIR-arm     := arm
57 ARCHDIR-arm64   := arm64
58 ARCHDIR-riscv   := riscv
59 ARCHDIR-mips    := mips
60 ARCHDIR-power8  := power8
62 CFLAGS_arm      +=
63 CFLAGS_arm64    += -mgeneral-regs-only
64 CFLAGS_mips     += -mips32r2 -G 0 -mno-abicalls -fno-pic
65 CFLAGS_riscv    +=
66 CFLAGS_x86_32   +=
67 CFLAGS_x86_64   += -mcmodel=large -mno-red-zone
68 CFLAGS_power8   +=
70 # Some boards only provide 2K stacks, so storing lots of data there leads to
71 # problems. Since C rules don't allow us to statically determine the maximum
72 # stack use, we use 1.5K as heuristic, assuming that we typically have lots
73 # of tiny stack frames and the odd large one.
75 # Store larger buffers in BSS, use MAYBE_STATIC to share code with __PRE_RAM__
76 # on x86.
77 # Since GCCs detection of dynamic array bounds unfortunately seems to be
78 # very basic, you'll sometimes have to use a static upper bound for the
79 # size and an assert() to make sure it's honored (see gpio_base3_value()
80 # for an example).
81 # (If you absolutely need a larger stack frame and are 100% sure it cannot
82 # cause problems, you can whitelist it with #pragma diagnostic.)
83 CFLAGS_arm      += -Wstack-usage=1536
84 CFLAGS_arm64    += -Wstack-usage=1536
85 CFLAGS_mips     += -Wstack-usage=1536
86 CFLAGS_riscv    += -Wstack-usage=1536
87 CFLAGS_power8   += -Wstack-usage=1536
89 toolchain_to_dir = \
90         $(foreach arch,$(ARCH_SUPPORTED),\
91         $(eval CPPFLAGS_$(arch) += \
92         -Isrc/arch/$(ARCHDIR-$(arch))/include))
94 # set_stage_toolchain: Decides the toolchain to be used by every stage
95 # E.g.: If bootblock is x86_32, it sets ARCH-BOOTBLOCK-y = x86_32, whereas
96 # ARCH-BOOTBLOCK-n = armv7. Then, ARCH-BOOTBLOCK-y can be used anywhere to
97 # decide the compiler toolchain for bootblock stage
98 # This step is essential for initializing the toolchain for coreboot standard
99 # stages i.e. bootblock, romstage and ramstage, since it acts as the second
100 # parameter to create_class_compiler below in init_standard_toolchain
101 map_stage = $(strip $(if $(MAP-$(1)),$(MAP-$(1)),$(1)))
102 set_stage_toolchain= \
103         $(foreach arch,$(ARCH_SUPPORTED), \
104         $(eval ARCH-$(1)-$($(shell \
105                 echo CONFIG_ARCH_$(call map_stage,$(1))_$(arch) | \
106                 tr '[:lower:]' '[:upper:]')) := $(arch)))
108 # create_class_compiler: Used to create compiler tool set for
109 # special classes
110 # @1: special class
111 # @2: compiler set to be used
112 # e.g.: smm special class uses i386 as compiler set
113 define create_class_compiler
114 $(if $(2),,$(error building $(1) without the required toolchain))
115 CC_$(1) := $(CC_$(2))
116 LD_$(1) := $(LD_$(2))
117 NM_$(1) := $(NM_$(2))
118 AR_$(1) := $(AR_$(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 CPPFLAGS_$(1) = $$(CPPFLAGS_common) $$(CPPFLAGS_$(2)) -D__ARCH_$(2)__
125 COMPILER_RT_$(1) := $$(COMPILER_RT_$(2))
126 COMPILER_RT_FLAGS_$(1) := $$(COMPILER_RT_FLAGS_$(2))
127 LDFLAGS_$(1) = $$(LDFLAGS_common) $$(LDFLAGS_$(2))
128 endef
130 # define_class: Allows defining any program as dynamic class and compiler tool
131 # set for the same based on the architecture for which the program is to be
132 # compiled
133 # @1: program (class name)
134 # @2: architecture for which the program needs to be compiled
135 # IMP: Ensure that define_class is called before any .c or .S files are added to
136 # the class of the program. Check subdirs-y for order of subdirectory inclusions
137 define define_class
138 classes-y += $(1)
139 $(eval $(call create_class_compiler,$(1),$(2)))
140 endef
142 # initialize standard toolchain (CC,AS and others) for give stage
143 # @1 : stage for which the toolchain is to be initialized
144 init_standard_toolchain = \
145         $(eval $(call set_stage_toolchain,$(1))) \
146         $(eval $(call create_class_compiler,$(1),$(ARCH-$(1)-y)))
148 init_stages = \
149         $(foreach stage,$(COREBOOT_STANDARD_STAGES), \
150         $(eval $(call init_standard_toolchain,$(stage))))
152 $(eval $(call toolchain_to_dir))
154 $(call init_stages)
156 # Test for coreboot toolchain (except when explicitly not requested)
157 ifneq ($(NOCOMPILE),1)
158 # Only run if we're doing a build (not for tests, kconfig, ...)
159 # rationale: gcc versions by Linux distributions tend to be quite messed up
160 # llvm/clang also needs patches supplied by the coreboot build
161 COMPILERFAIL:=0
162 IASLFAIL:=0
164 ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
165 # Verify that the coreboot toolchain is being used.
166 $(foreach arch,$(sort $(foreach stage,\
167         $(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \
168         $(if $(shell if [ -n "$(CC_$(arch))" ]; then \
169                 $(CC_$(arch)) -v 2>&1 | grep -q "coreboot toolchain" || \
170                 echo not-coreboot; else echo not-coreboot; fi), \
171                 $(eval COMPILERFAIL:=1)\
172                 $(warning The coreboot toolchain for '$(arch)'\
173                         architecture was not found.)))
174 # If iasl doesn't match the current coreboot version, fail the test
175 # TODO: Figure out if iasl is even needed for the build.
176 $(if $(shell if [ -n "$(IASL)" ]; then \
177         $(IASL) -v 2>&1 | grep -q "coreboot toolchain" || \
178         echo not-coreboot; else echo not-coreboot; fi), \
179         $(eval COMPILERFAIL:=1)$(eval IASLFAIL:=1)\
180         $(warning The coreboot toolchain version of iasl \
181                 '$(shell util/crossgcc/buildgcc -s iasl)' was not found))
182 else #$(CONFIG_ANY_TOOLCHAIN)
183 # If the coreboot toolchain isn't being used, verify that there is A toolchain
184 $(foreach arch,$(sort \
185         $(foreach stage,$(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \
186         $(if $(CC_$(arch)),, $(eval COMPILERFAIL:=1) \
187         $(warning No compiler found for '$(arch)' architecture. \
188                 Install one or use the coreboot toolchain?)) )
189 # If iasl isn't present, fail
190 # TODO: Figure out if iasl is even needed for the build.
191 $(if $(IASL),, $(eval COMPILERFAIL:=1)$(eval IASLFAIL:=1) \
192         $(warning iasl not found. \
193                 Please install it or use the coreboot toolchain.))
194 endif
196 # If the compiler check failed, print out warnings
197 ifeq ($(COMPILERFAIL),1)
198 ifneq ($(XGCCPATH),)
199 $(warning )
200 $(warning Path to your toolchain is currently set to '$(XGCCPATH)')
201 endif
202 $(warning )
203 $(warning To build the entire coreboot toolchain: run 'make crossgcc')
204 ifeq ($(IASLFAIL),1)
205 $(warning To build just IASL: run 'make iasl')
206 endif #($(IASLFAIL),1)
207 $(warning For more toolchain build targets: run 'make help_toolchain')
208 $(warning )
209 ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
210 $(warning To try to use any toolchain in your path, \
211         run 'make menuconfig', then select)
212 $(warning the config option: 'General setup', \
213         and 'Allow building with any toolchain')
214 $(warning Note that this is NOT supported.  \
215         Using it means you're on your own.)
216 $(warning )
217 endif #($(CONFIG_ANY_TOOLCHAIN),y)
218 $(error Halting the build)
219 endif #($(COMPILERFAIL),1)
221 endif #($(NOCOMPILE),1)
223 # Run the toolchain version checks if the requested target is 'test-toolchain'
224 # Checks the versions of GCC, binutils, clang, and IASL
225 ifneq ($(MAKECMDGOALS),)
226 ifneq ($(filter test-toolchain,$(MAKECMDGOALS)),)
227 $(foreach arch, $(ARCH_SUPPORTED), \
228         $(if $(shell if [ -n "$(GCC_CC_$(arch))" ]; then \
229                 $(GCC_CC_$(arch)) -v 2>&1 | \
230                 grep -q "$(shell util/crossgcc/buildgcc -s gcc)" || \
231                 echo not-current; fi), \
232                 $(eval COMPILER_OUT_OF_DATE:=1) \
233                 $(warning The coreboot toolchain version of gcc for '$(arch)' \
234                         architecture is not the current version.)) \
235         $(if $(shell if [ -n "$(CLANG_CC_$(arch))" ]; then \
236                 $(CLANG_CC_$(arch)) -v 2>&1 | \
237                 grep -q "$(shell util/crossgcc/buildgcc -s clang)" || \
238                 echo not-current; fi), \
239                 $(eval COMPILER_OUT_OF_DATE:=1)\
240                 $(warning The coreboot toolchain version of clang for \
241                         '$(arch)' architecture is not the current version.)) \
242         $(if $(shell if [ "$(OBJDUMP_$(arch))" != "invalidobjdump" ]; then \
243         $(OBJDUMP_$(arch)) -v 2>&1 | \
244         grep -q "$(shell util/crossgcc/buildgcc -s binutils)" || \
245         echo not-current; fi), \
246                 $(eval COMPILER_OUT_OF_DATE:=1)\
247                 $(warning The coreboot toolchain version of binutils for \
248                         '$(arch)' architecture is not the current version.)) \
250 $(if $(shell if [ -n "$(IASL)" ]; then $(IASL) -v 2>&1 | \
251         grep -q "$(shell util/crossgcc/buildgcc -s iasl)" || \
252         echo not-coreboot; fi), \
253         $(eval COMPILER_OUT_OF_DATE:=1)\
254         $(warning The coreboot toolchain version of iasl \
255                 is not the current version))
256 endif #($(filter crossgcc_check%,$(MAKECMDGOALS)),)
257 endif #($(MAKECMDGOALS),)