blob: eb1f0876bdb9299b8e98f5e873e497a7ad66a25d [file] [log] [blame]
Furquan Shaikh99ac98f2014-04-23 10:18:48 -07001##
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.
14##
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070015
Patrick Georgie47477e2014-05-17 18:38:10 +020016# ccache integration
17ifeq ($(CONFIG_CCACHE),y)
18
19CCACHE:=$(word 1,$(wildcard $(addsuffix /ccache,$(subst :, ,$(PATH)))))
20ifeq ($(CCACHE),)
21$(error ccache selected, but not found in PATH)
22endif
23
24export CCACHE_COMPILERCHECK=content
25export CCACHE_BASEDIR=$(top)
26
27$(foreach arch,$(ARCH_SUPPORTED), \
28 $(eval CC_$(arch):=$(CCACHE) $(CC_$(arch))))
29
30HOSTCC:=$(CCACHE) $(HOSTCC)
31HOSTCXX:=$(CCACHE) $(HOSTCXX)
32ROMCC=$(CCACHE) $(ROMCC_BIN)
33endif
Patrick Georgifadbe5f2014-05-17 18:26:38 +020034
35# scan-build integration
36ifneq ($(CCC_ANALYZER_OUTPUT_FORMAT),)
37
38ifeq ($(CCC_ANALYZER_ANALYSIS),)
39export CCC_ANALYZER_ANALYSIS := -analyzer-opt-analyze-headers
40endif
41
42$(foreach arch,$(ARCH_SUPPORTED), \
Patrick Georgie47477e2014-05-17 18:38:10 +020043 $(eval CC_$(arch):=CCC_CC="$(CC_$(arch))" $(CC) ))
Patrick Georgifadbe5f2014-05-17 18:26:38 +020044
45HOSTCC:=CCC_CC="$(HOSTCC)" $(CC)
46HOSTCXX:=CCC_CXX="$(HOSTCXX)" $(CXX)
47ROMCC=CCC_CC="$(ROMCC_BIN)" $(CC)
48endif
49
Patrick Georgi27ef6022015-04-30 14:25:14 +020050COREBOOT_STANDARD_STAGES := bootblock libverstage verstage romstage ramstage
51MAP-libverstage := verstage
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070052
Patrick Georgi8688def2015-03-28 16:27:42 +010053ARCHDIR-i386 := x86
54ARCHDIR-x86_32 := x86
Martin Rothcf0f6b82016-01-11 10:30:24 -070055ARCHDIR-x86_64 := x86
Patrick Georgi8688def2015-03-28 16:27:42 +010056ARCHDIR-arm := arm
57ARCHDIR-arm64 := arm64
58ARCHDIR-riscv := riscv
59ARCHDIR-mips := mips
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070060
Martin Rothcf0f6b82016-01-11 10:30:24 -070061CFLAGS_arm +=
62CFLAGS_arm64 += -mgeneral-regs-only
Stefan Reinauerd146ac62015-07-31 13:50:03 -070063CFLAGS_mips += -mips32r2 -G 0 -mno-abicalls -fno-pic
64CFLAGS_riscv +=
65CFLAGS_x86_32 +=
Martin Rothcf0f6b82016-01-11 10:30:24 -070066CFLAGS_x86_64 += -mcmodel=large -mno-red-zone
Stefan Reinauer46591132015-03-15 04:19:58 +010067
Julius Werner8d8799a2014-12-19 16:11:14 -080068# Some boards only provide 2K stacks, so storing lots of data there leads to
69# problems. Since C rules don't allow us to statically determine the maximum
70# stack use, we use 1.5K as heuristic, assuming that we typically have lots
71# of tiny stack frames and the odd large one.
72#
73# Store larger buffers in BSS, use MAYBE_STATIC to share code with __PRE_RAM__
74# on x86.
75# Since GCCs detection of dynamic array bounds unfortunately seems to be
76# very basic, you'll sometimes have to use a static upper bound for the
77# size and an assert() to make sure it's honored (see gpio_base3_value()
78# for an example).
79# (If you absolutely need a larger stack frame and are 100% sure it cannot
80# cause problems, you can whitelist it with #pragma diagnostic.)
81CFLAGS_arm += -Wstack-usage=1536
82CFLAGS_arm64 += -Wstack-usage=1536
83CFLAGS_mips += -Wstack-usage=1536
84CFLAGS_riscv += -Wstack-usage=1536
85
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070086toolchain_to_dir = \
87 $(foreach arch,$(ARCH_SUPPORTED),\
Patrick Georgib145b832014-05-17 15:08:47 +020088 $(eval CPPFLAGS_$(arch) += \
Patrick Georgi4ebd3d92014-05-17 14:02:08 +020089 -Isrc/arch/$(ARCHDIR-$(arch))/include))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070090
91# set_stage_toolchain: Decides the toolchain to be used by every stage
92# E.g.: If bootblock is x86_32, it sets ARCH-BOOTBLOCK-y = x86_32, whereas
93# ARCH-BOOTBLOCK-n = armv7. Then, ARCH-BOOTBLOCK-y can be used anywhere to
94# decide the compiler toolchain for bootblock stage
95# This step is essential for initializing the toolchain for coreboot standard
96# stages i.e. bootblock, romstage and ramstage, since it acts as the second
97# parameter to create_class_compiler below in init_standard_toolchain
Patrick Georgi27ef6022015-04-30 14:25:14 +020098map_stage = $(strip $(if $(MAP-$(1)),$(MAP-$(1)),$(1)))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070099set_stage_toolchain= \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700100 $(foreach arch,$(ARCH_SUPPORTED), \
101 $(eval ARCH-$(1)-$($(shell \
102 echo CONFIG_ARCH_$(call map_stage,$(1))_$(arch) | \
103 tr '[:lower:]' '[:upper:]')) := $(arch)))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700104
105# create_class_compiler: Used to create compiler tool set for
106# special classes
107# @1: special class
108# @2: compiler set to be used
109# e.g.: smm special class uses i386 as compiler set
110define create_class_compiler
Marc Jonesd1f840b2015-01-22 16:18:49 +0800111$(if $(2),,$(error building $(1) without the required toolchain))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700112CC_$(1) := $(CC_$(2))
113LD_$(1) := $(LD_$(2))
114NM_$(1) := $(NM_$(2))
Daisuke Nojiri9b1cb582014-06-19 19:01:34 -0700115AR_$(1) := $(AR_$(2))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700116OBJCOPY_$(1) := $(OBJCOPY_$(2))
117OBJDUMP_$(1) := $(OBJDUMP_$(2))
118STRIP_$(1) := $(STRIP_$(2))
119READELF_$(1) := $(READELF_$(2))
Marc Jonesa38ccfd2014-11-06 15:50:22 -0700120CFLAGS_$(1) = $$(CFLAGS_common) $$(CFLAGS_$(2))
Julius Wernerd3634c12015-11-13 13:28:41 -0800121CPPFLAGS_$(1) = $$(CPPFLAGS_common) $$(CPPFLAGS_$(2)) -D__ARCH_$(2)__
Patrick Georgi527f3922015-06-04 13:31:38 +0200122COMPILER_RT_$(1) := $$(COMPILER_RT_$(2))
123COMPILER_RT_FLAGS_$(1) := $$(COMPILER_RT_FLAGS_$(2))
Aaron Durbind4dd44c2015-09-06 10:15:17 -0500124LDFLAGS_$(1) = $$(LDFLAGS_common) $$(LDFLAGS_$(2))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700125endef
126
Furquan Shaikh133096b2014-07-31 09:28:55 -0700127# define_class: Allows defining any program as dynamic class and compiler tool
128# set for the same based on the architecture for which the program is to be
129# compiled
130# @1: program (class name)
131# @2: architecture for which the program needs to be compiled
132# IMP: Ensure that define_class is called before any .c or .S files are added to
133# the class of the program. Check subdirs-y for order of subdirectory inclusions
134define define_class
135classes-y += $(1)
136$(eval $(call create_class_compiler,$(1),$(2)))
137endef
138
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700139# initialize standard toolchain (CC,AS and others) for give stage
140# @1 : stage for which the toolchain is to be initialized
141init_standard_toolchain = \
Patrick Georgi4ebd3d92014-05-17 14:02:08 +0200142 $(eval $(call set_stage_toolchain,$(1))) \
Patrick Georgi262f31c2014-05-17 15:13:40 +0200143 $(eval $(call create_class_compiler,$(1),$(ARCH-$(1)-y)))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700144
145init_stages = \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700146 $(foreach stage,$(COREBOOT_STANDARD_STAGES), \
147 $(eval $(call init_standard_toolchain,$(stage))))
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700148
Furquan Shaikh99ac98f2014-04-23 10:18:48 -0700149$(eval $(call toolchain_to_dir))
150
151$(call init_stages)
Patrick Georgi1053f652015-03-26 21:39:12 +0100152
Martin Roth3fb73c22015-12-07 14:04:27 -0700153# Test for coreboot toolchain (except when explicitly not requested)
Patrick Georgi1053f652015-03-26 21:39:12 +0100154ifneq ($(NOCOMPILE),1)
Martin Rotha23e2ce2015-12-07 14:07:10 -0700155# only run if we're doing a build (not for tests, kconfig, ...)
Patrick Georgi1053f652015-03-26 21:39:12 +0100156# rationale: gcc versions by Linux distributions tend to be quite messed up
Martin Rotha23e2ce2015-12-07 14:07:10 -0700157# llvm/clang also needs patches supplied by the coreboot build
Patrick Georgi1053f652015-03-26 21:39:12 +0100158COMPILERFAIL:=0
Martin Rothd9c193d2015-11-26 22:34:42 -0700159IASLFAIL:=0
Martin Rotha23e2ce2015-12-07 14:07:10 -0700160
Patrick Georgi1053f652015-03-26 21:39:12 +0100161ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
Martin Rothcf0f6b82016-01-11 10:30:24 -0700162$(foreach arch,$(sort $(foreach stage,\
163 $(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \
164 $(if $(shell if [ -n "$(CC_$(arch))" ]; then \
165 $(CC_$(arch)) -v 2>&1 | grep -q "coreboot toolchain" || \
166 echo not-coreboot; else echo not-coreboot; fi), \
167 $(eval COMPILERFAIL:=1)\
168 $(warning The coreboot toolchain for '$(arch)'\
169 architecture was not found.)))
Martin Rothd9c193d2015-11-26 22:34:42 -0700170#if iasl doesn't match the current coreboot version, fail the test
Martin Rothada36d42015-12-07 14:27:34 -0700171#TODO: Figure out if iasl is even needed for the build.
Martin Rothcf0f6b82016-01-11 10:30:24 -0700172$(if $(shell if [ -n "$(IASL)" ]; then \
173 $(IASL) -v 2>&1 | grep -q "$(shell util/crossgcc/buildgcc -s iasl)" || \
174 echo not-coreboot; else echo not-coreboot; fi), \
175 $(eval COMPILERFAIL:=1)$(eval IASLFAIL:=1)\
176 $(warning The coreboot toolchain version of iasl \
177 '$(shell util/crossgcc/buildgcc -s iasl)' was not found))
Martin Rothaf91b8b2015-12-07 14:33:44 -0700178else #$(CONFIG_ANY_TOOLCHAIN)
Martin Rothcf0f6b82016-01-11 10:30:24 -0700179$(foreach arch,$(sort \
180 $(foreach stage,$(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \
Martin Rothaf91b8b2015-12-07 14:33:44 -0700181 $(if $(CC_$(arch)),, $(eval COMPILERFAIL:=1) \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700182 $(warning No compiler found for '$(arch)' architecture. \
183 Install one or use the coreboot toolchain?)) )
Martin Rothaf91b8b2015-12-07 14:33:44 -0700184#if iasl isn't present, fail
185#TODO: Figure out if iasl is even needed for the build.
186$(if $(IASL),, $(eval COMPILERFAIL:=1)$(eval IASLFAIL:=1) \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700187 $(warning iasl not found. \
188 Please install it or use the coreboot toolchain.))
Patrick Georgi1053f652015-03-26 21:39:12 +0100189endif
Patrick Georgi1053f652015-03-26 21:39:12 +0100190ifeq ($(COMPILERFAIL),1)
Martin Roth019cdbf2015-12-07 14:13:40 -0700191ifneq ($(XGCCPATH),)
192$(warning )
193$(warning Path to your toolchain is currently set to '$(XGCCPATH)')
194endif
Martin Roth335a9b62015-11-25 12:44:15 -0700195$(warning )
Martin Rothada36d42015-12-07 14:27:34 -0700196$(warning To build the entire coreboot toolchain: run 'make crossgcc')
Martin Rothd9c193d2015-11-26 22:34:42 -0700197ifeq ($(IASLFAIL),1)
Martin Rothada36d42015-12-07 14:27:34 -0700198$(warning To build just IASL: run 'make iasl')
Martin Roth73b79972015-12-07 14:20:55 -0700199endif #($(IASLFAIL),1)
Martin Rothada36d42015-12-07 14:27:34 -0700200$(warning For more toolchain build targets: run 'make help_toolchain')
Martin Roth335a9b62015-11-25 12:44:15 -0700201$(warning )
Martin Roth5981a632015-12-07 14:24:57 -0700202ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
Martin Rothcf0f6b82016-01-11 10:30:24 -0700203$(warning To try to use any toolchain in your path, \
204 run 'make menuconfig', then select)
205$(warning the config option: 'General setup', \
206 and 'Allow building with any toolchain')
207$(warning Note that this is NOT supported. \
208 Using it means you're on your own.)
Martin Roth5981a632015-12-07 14:24:57 -0700209$(warning )
210endif #($(CONFIG_ANY_TOOLCHAIN),y)
211$(error Halting the build)
Martin Roth73b79972015-12-07 14:20:55 -0700212endif #($(COMPILERFAIL),1)
213
214endif #($(NOCOMPILE),1)
Martin Rothaede3fc2016-01-05 16:07:42 -0700215
216ifneq ($(MAKECMDGOALS),)
217ifneq ($(filter test-toolchain,$(MAKECMDGOALS)),)
218$(foreach arch, $(ARCH_SUPPORTED), \
Martin Rothcf0f6b82016-01-11 10:30:24 -0700219 $(if $(shell if [ -n "$(GCC_CC_$(arch))" ]; then \
220 $(GCC_CC_$(arch)) -v 2>&1 | \
221 grep -q "$(shell util/crossgcc/buildgcc -s gcc)" || \
222 echo not-current; fi), \
223 $(eval COMPILER_OUT_OF_DATE:=1) \
224 $(warning The coreboot toolchain version of gcc for '$(arch)' \
225 architecture is not the current version.)) \
226 $(if $(shell if [ -n "$(CLANG_CC_$(arch))" ]; then \
227 $(CLANG_CC_$(arch)) -v 2>&1 | \
228 grep -q "$(shell util/crossgcc/buildgcc -s clang)" || \
229 echo not-current; fi), \
230 $(eval COMPILER_OUT_OF_DATE:=1)\
231 $(warning The coreboot toolchain version of clang for \
232 '$(arch)' architecture is not the current version.)) \
233 $(if $(shell if [ "$(OBJDUMP_$(arch))" != "invalidobjdump" ]; then \
234 $(OBJDUMP_$(arch)) -v 2>&1 | \
235 grep -q "$(shell util/crossgcc/buildgcc -s binutils)" || \
236 echo not-current; fi), \
237 $(eval COMPILER_OUT_OF_DATE:=1)\
238 $(warning The coreboot toolchain version of binutils for \
239 '$(arch)' architecture is not the current version.)) \
Martin Rothaede3fc2016-01-05 16:07:42 -0700240)
Martin Rothcf0f6b82016-01-11 10:30:24 -0700241$(if $(shell if [ -n "$(IASL)" ]; then $(IASL) -v 2>&1 | \
242 grep -q "$(shell util/crossgcc/buildgcc -s iasl)" || \
243 echo not-coreboot; fi), \
244 $(eval COMPILER_OUT_OF_DATE:=1)\
245 $(warning The coreboot toolchain version of iasl \
246 is not the current version))
Martin Rothaede3fc2016-01-05 16:07:42 -0700247endif # ifneq ($(filter crossgcc_check%,$(MAKECMDGOALS)),)
248endif # ifneq ($(MAKECMDGOALS),)