libpayload: Rename Config.in -> Kconfig
[coreboot.git] / toolchain.inc
blob8b7b30abf0e6bfddb879b8c99b434b2e311596fa
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.
15 ## You should have received a copy of the GNU General Public License
16 ## along with this program; if not, write to the Free Software
17 ## Foundation, Inc.
20 # ccache integration
21 ifeq ($(CONFIG_CCACHE),y)
23 CCACHE:=$(word 1,$(wildcard $(addsuffix /ccache,$(subst :, ,$(PATH)))))
24 ifeq ($(CCACHE),)
25 $(error ccache selected, but not found in PATH)
26 endif
28 export CCACHE_COMPILERCHECK=content
29 export CCACHE_BASEDIR=$(top)
31 $(foreach arch,$(ARCH_SUPPORTED), \
32         $(eval CC_$(arch):=$(CCACHE) $(CC_$(arch))))
34 HOSTCC:=$(CCACHE) $(HOSTCC)
35 HOSTCXX:=$(CCACHE) $(HOSTCXX)
36 ROMCC=$(CCACHE) $(ROMCC_BIN)
37 endif
39 # scan-build integration
40 ifneq ($(CCC_ANALYZER_OUTPUT_FORMAT),)
42 ifeq ($(CCC_ANALYZER_ANALYSIS),)
43 export CCC_ANALYZER_ANALYSIS := -analyzer-opt-analyze-headers
44 endif
46 $(foreach arch,$(ARCH_SUPPORTED), \
47         $(eval CC_$(arch):=CCC_CC="$(CC_$(arch))" $(CC) ))
49 HOSTCC:=CCC_CC="$(HOSTCC)" $(CC)
50 HOSTCXX:=CCC_CXX="$(HOSTCXX)" $(CXX)
51 ROMCC=CCC_CC="$(ROMCC_BIN)" $(CC)
52 endif
54 COREBOOT_STANDARD_STAGES := bootblock libverstage verstage romstage ramstage
55 MAP-libverstage := verstage
57 ARCHDIR-i386    := x86
58 ARCHDIR-x86_32  := x86
59 ARCHDIR-arm     := arm
60 ARCHDIR-arm64   := arm64
61 ARCHDIR-riscv   := riscv
62 ARCHDIR-mips    := mips
64 CFLAGS_arm      := -ffunction-sections -fdata-sections
66 CFLAGS_arm64 := -ffunction-sections -fdata-sections
68 CFLAGS_mips     := -mips32r2 -G 0  -ffunction-sections -fdata-sections
69 CFLAGS_mips     += -mno-abicalls -fno-pic
71 CFLAGS_x86_32 += -ffunction-sections -fdata-sections
72 CFLAGS_riscv    := -ffunction-sections -fdata-sections
74 toolchain_to_dir = \
75         $(foreach arch,$(ARCH_SUPPORTED),\
76         $(eval CPPFLAGS_$(arch) += \
77         -Isrc/arch/$(ARCHDIR-$(arch))/include))
79 # set_stage_toolchain: Decides the toolchain to be used by every stage
80 # E.g.: If bootblock is x86_32, it sets ARCH-BOOTBLOCK-y = x86_32, whereas
81 # ARCH-BOOTBLOCK-n = armv7. Then, ARCH-BOOTBLOCK-y can be used anywhere to
82 # decide the compiler toolchain for bootblock stage
83 # This step is essential for initializing the toolchain for coreboot standard
84 # stages i.e. bootblock, romstage and ramstage, since it acts as the second
85 # parameter to create_class_compiler below in init_standard_toolchain
86 map_stage = $(strip $(if $(MAP-$(1)),$(MAP-$(1)),$(1)))
87 set_stage_toolchain= \
88         $(foreach arch,$(ARCH_SUPPORTED),$(eval ARCH-$(1)-$($(shell echo CONFIG_ARCH_$(call map_stage,$(1))_$(arch) | tr '[:lower:]' '[:upper:]')) := $(arch)))
90 # create_class_compiler: Used to create compiler tool set for
91 # special classes
92 # @1: special class
93 # @2: compiler set to be used
94 # e.g.: smm special class uses i386 as compiler set
95 define create_class_compiler
96 $(if $(2),,$(error building $(1) without the required toolchain))
97 CC_$(1) := $(CC_$(2))
98 LD_$(1) := $(LD_$(2))
99 NM_$(1) := $(NM_$(2))
100 AR_$(1) := $(AR_$(2))
101 OBJCOPY_$(1) := $(OBJCOPY_$(2))
102 OBJDUMP_$(1) := $(OBJDUMP_$(2))
103 STRIP_$(1) := $(STRIP_$(2))
104 READELF_$(1) := $(READELF_$(2))
105 CFLAGS_$(1) = $$(CFLAGS_common) $$(CFLAGS_$(2))
106 CPPFLAGS_$(1) = $$(CPPFLAGS_common) $$(CPPFLAGS_$(2))
107 COMPILER_RT_$(1) := $$(COMPILER_RT_$(2))
108 COMPILER_RT_FLAGS_$(1) := $$(COMPILER_RT_FLAGS_$(2))
109 endef
111 # define_class: Allows defining any program as dynamic class and compiler tool
112 # set for the same based on the architecture for which the program is to be
113 # compiled
114 # @1: program (class name)
115 # @2: architecture for which the program needs to be compiled
116 # IMP: Ensure that define_class is called before any .c or .S files are added to
117 # the class of the program. Check subdirs-y for order of subdirectory inclusions
118 define define_class
119 classes-y += $(1)
120 $(eval $(call create_class_compiler,$(1),$(2)))
121 endef
123 # initialize standard toolchain (CC,AS and others) for give stage
124 # @1 : stage for which the toolchain is to be initialized
125 init_standard_toolchain = \
126         $(eval $(call set_stage_toolchain,$(1))) \
127         $(eval $(call create_class_compiler,$(1),$(ARCH-$(1)-y)))
129 init_stages = \
130             $(foreach stage,$(COREBOOT_STANDARD_STAGES),$(eval $(call init_standard_toolchain,$(stage))))
132 $(eval $(call toolchain_to_dir))
134 $(call init_stages)
136 # Test for coreboot toolchain (except when explicitely not requested)
137 ifneq ($(NOCOMPILE),1)
138 # only run if we're doing a build (not for tests, kconfig, ...), using gcc
139 # rationale: gcc versions by Linux distributions tend to be quite messed up
140 COMPILERFAIL:=0
141 ifeq ($(CONFIG_COMPILER_GCC),y)
142 ifneq ($(CONFIG_ANY_TOOLCHAIN),y)
143 $(foreach arch,$(sort $(foreach stage,$(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \
144         $(if $(shell $(CC_$(arch)) -v 2>&1 |grep -q "gcc version .*coreboot toolchain" || echo not-coreboot), \
145                 $(eval COMPILERFAIL:=1)$(warning Please use the coreboot toolchain for '$(arch)' (or prove that your toolchain works))))
146 endif
147 endif
148 endif
149 ifeq ($(COMPILERFAIL),1)
150 $(error consider building our compilers: make crossgcc)
151 endif