Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 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. |
| 14 | ## |
| 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 18 | ## |
| 19 | |
Patrick Georgi | e47477e | 2014-05-17 18:38:10 +0200 | [diff] [blame] | 20 | # ccache integration |
| 21 | ifeq ($(CONFIG_CCACHE),y) |
| 22 | |
| 23 | CCACHE:=$(word 1,$(wildcard $(addsuffix /ccache,$(subst :, ,$(PATH))))) |
| 24 | ifeq ($(CCACHE),) |
| 25 | $(error ccache selected, but not found in PATH) |
| 26 | endif |
| 27 | |
| 28 | export CCACHE_COMPILERCHECK=content |
| 29 | export CCACHE_BASEDIR=$(top) |
| 30 | |
| 31 | $(foreach arch,$(ARCH_SUPPORTED), \ |
| 32 | $(eval CC_$(arch):=$(CCACHE) $(CC_$(arch)))) |
| 33 | |
| 34 | HOSTCC:=$(CCACHE) $(HOSTCC) |
| 35 | HOSTCXX:=$(CCACHE) $(HOSTCXX) |
| 36 | ROMCC=$(CCACHE) $(ROMCC_BIN) |
| 37 | endif |
Patrick Georgi | fadbe5f | 2014-05-17 18:26:38 +0200 | [diff] [blame] | 38 | |
| 39 | # scan-build integration |
| 40 | ifneq ($(CCC_ANALYZER_OUTPUT_FORMAT),) |
| 41 | |
| 42 | ifeq ($(CCC_ANALYZER_ANALYSIS),) |
| 43 | export CCC_ANALYZER_ANALYSIS := -analyzer-opt-analyze-headers |
| 44 | endif |
| 45 | |
| 46 | $(foreach arch,$(ARCH_SUPPORTED), \ |
Patrick Georgi | e47477e | 2014-05-17 18:38:10 +0200 | [diff] [blame] | 47 | $(eval CC_$(arch):=CCC_CC="$(CC_$(arch))" $(CC) )) |
Patrick Georgi | fadbe5f | 2014-05-17 18:26:38 +0200 | [diff] [blame] | 48 | |
| 49 | HOSTCC:=CCC_CC="$(HOSTCC)" $(CC) |
| 50 | HOSTCXX:=CCC_CXX="$(HOSTCXX)" $(CXX) |
| 51 | ROMCC=CCC_CC="$(ROMCC_BIN)" $(CC) |
| 52 | endif |
| 53 | |
Stefan Reinauer | 77b1655 | 2015-01-14 19:51:47 +0100 | [diff] [blame] | 54 | COREBOOT_STANDARD_STAGES := bootblock verstage romstage ramstage |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 55 | |
Patrick Georgi | 8688def | 2015-03-28 16:27:42 +0100 | [diff] [blame] | 56 | ARCHDIR-i386 := x86 |
| 57 | ARCHDIR-x86_32 := x86 |
| 58 | ARCHDIR-arm := arm |
| 59 | ARCHDIR-arm64 := arm64 |
| 60 | ARCHDIR-riscv := riscv |
| 61 | ARCHDIR-mips := mips |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 62 | |
Julius Werner | 1968b58 | 2015-01-16 16:06:00 -0800 | [diff] [blame] | 63 | CFLAGS_arm := -ffunction-sections -fdata-sections |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 64 | |
Furquan Shaikh | 2af76f4 | 2014-04-28 16:39:40 -0700 | [diff] [blame] | 65 | CFLAGS_arm64 := -ffunction-sections -fdata-sections |
| 66 | |
Patrick Georgi | 8688def | 2015-03-28 16:27:42 +0100 | [diff] [blame] | 67 | CFLAGS_mips := -mips32r2 -G 0 -ffunction-sections -fdata-sections |
| 68 | CFLAGS_mips += -mno-abicalls -fno-pic |
Paul Burton | 6529c33 | 2014-05-27 15:18:42 +0100 | [diff] [blame] | 69 | |
Gerd Hoffmann | dc27ca9 | 2015-03-26 17:38:03 +0100 | [diff] [blame] | 70 | CFLAGS_x86_32 += -ffunction-sections -fdata-sections |
Aaron Durbin | f69a99d | 2015-03-10 11:45:25 -0500 | [diff] [blame] | 71 | |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 72 | toolchain_to_dir = \ |
| 73 | $(foreach arch,$(ARCH_SUPPORTED),\ |
Patrick Georgi | b145b83 | 2014-05-17 15:08:47 +0200 | [diff] [blame] | 74 | $(eval CPPFLAGS_$(arch) += \ |
Patrick Georgi | 4ebd3d9 | 2014-05-17 14:02:08 +0200 | [diff] [blame] | 75 | -Isrc/arch/$(ARCHDIR-$(arch))/include)) |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 76 | |
| 77 | # set_stage_toolchain: Decides the toolchain to be used by every stage |
| 78 | # E.g.: If bootblock is x86_32, it sets ARCH-BOOTBLOCK-y = x86_32, whereas |
| 79 | # ARCH-BOOTBLOCK-n = armv7. Then, ARCH-BOOTBLOCK-y can be used anywhere to |
| 80 | # decide the compiler toolchain for bootblock stage |
| 81 | # This step is essential for initializing the toolchain for coreboot standard |
| 82 | # stages i.e. bootblock, romstage and ramstage, since it acts as the second |
| 83 | # parameter to create_class_compiler below in init_standard_toolchain |
| 84 | set_stage_toolchain= \ |
Patrick Georgi | 4ebd3d9 | 2014-05-17 14:02:08 +0200 | [diff] [blame] | 85 | $(foreach arch,$(ARCH_SUPPORTED),$(eval ARCH-$(1)-$($(shell echo CONFIG_ARCH_$(1)_$(arch) | tr '[:lower:]' '[:upper:]')) := $(arch))) |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 86 | |
| 87 | # create_class_compiler: Used to create compiler tool set for |
| 88 | # special classes |
| 89 | # @1: special class |
| 90 | # @2: compiler set to be used |
| 91 | # e.g.: smm special class uses i386 as compiler set |
| 92 | define create_class_compiler |
Marc Jones | d1f840b | 2015-01-22 16:18:49 +0800 | [diff] [blame] | 93 | $(if $(2),,$(error building $(1) without the required toolchain)) |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 94 | CC_$(1) := $(CC_$(2)) |
| 95 | LD_$(1) := $(LD_$(2)) |
| 96 | NM_$(1) := $(NM_$(2)) |
Daisuke Nojiri | 9b1cb58 | 2014-06-19 19:01:34 -0700 | [diff] [blame] | 97 | AR_$(1) := $(AR_$(2)) |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 98 | OBJCOPY_$(1) := $(OBJCOPY_$(2)) |
| 99 | OBJDUMP_$(1) := $(OBJDUMP_$(2)) |
| 100 | STRIP_$(1) := $(STRIP_$(2)) |
| 101 | READELF_$(1) := $(READELF_$(2)) |
Marc Jones | a38ccfd | 2014-11-06 15:50:22 -0700 | [diff] [blame] | 102 | CFLAGS_$(1) = $$(CFLAGS_common) $$(CFLAGS_$(2)) |
| 103 | CPPFLAGS_$(1) = $$(CPPFLAGS_common) $$(CPPFLAGS_$(2)) |
Patrick Georgi | 9594893 | 2014-11-22 17:55:46 +0100 | [diff] [blame] | 104 | COMPILER_RT_FLAGS_$(1) := |
Patrick Georgi | 3ce96bd | 2014-11-22 17:42:58 +0100 | [diff] [blame] | 105 | ifeq ($(CONFIG_COMPILER_LLVM_CLANG),y) |
| 106 | COMPILER_RT_$(1) = $(shell $(CC_$(2)) $(CFLAGS_$(2)) -print-librt-file-name 2>/dev/null) |
| 107 | else |
| 108 | COMPILER_RT_$(1) = $(wildcard $(shell $(CC_$(2)) $(CFLAGS_$(2)) -print-libgcc-file-name)) |
Patrick Georgi | 9594893 | 2014-11-22 17:55:46 +0100 | [diff] [blame] | 109 | ifeq ($(2),x86_32) |
| 110 | COMPILER_RT_FLAGS_$(1) := --wrap __divdi3 --wrap __udivdi3 --wrap __moddi3 --wrap __umoddi3 |
| 111 | endif |
Patrick Georgi | 3ce96bd | 2014-11-22 17:42:58 +0100 | [diff] [blame] | 112 | endif |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 113 | endef |
| 114 | |
Furquan Shaikh | 133096b | 2014-07-31 09:28:55 -0700 | [diff] [blame] | 115 | # define_class: Allows defining any program as dynamic class and compiler tool |
| 116 | # set for the same based on the architecture for which the program is to be |
| 117 | # compiled |
| 118 | # @1: program (class name) |
| 119 | # @2: architecture for which the program needs to be compiled |
| 120 | # IMP: Ensure that define_class is called before any .c or .S files are added to |
| 121 | # the class of the program. Check subdirs-y for order of subdirectory inclusions |
| 122 | define define_class |
| 123 | classes-y += $(1) |
| 124 | $(eval $(call create_class_compiler,$(1),$(2))) |
| 125 | endef |
| 126 | |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 127 | # initialize standard toolchain (CC,AS and others) for give stage |
| 128 | # @1 : stage for which the toolchain is to be initialized |
| 129 | init_standard_toolchain = \ |
Patrick Georgi | 4ebd3d9 | 2014-05-17 14:02:08 +0200 | [diff] [blame] | 130 | $(eval $(call set_stage_toolchain,$(1))) \ |
Patrick Georgi | 262f31c | 2014-05-17 15:13:40 +0200 | [diff] [blame] | 131 | $(eval $(call create_class_compiler,$(1),$(ARCH-$(1)-y))) |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 132 | |
| 133 | init_stages = \ |
| 134 | $(foreach stage,$(COREBOOT_STANDARD_STAGES),$(eval $(call init_standard_toolchain,$(stage)))) |
| 135 | |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 136 | $(eval $(call toolchain_to_dir)) |
| 137 | |
| 138 | $(call init_stages) |
Patrick Georgi | 1053f65 | 2015-03-26 21:39:12 +0100 | [diff] [blame] | 139 | |
| 140 | # Test for coreboot toolchain (except when explicitely not requested) |
| 141 | ifneq ($(NOCOMPILE),1) |
| 142 | # only run if we're doing a build (not for tests, kconfig, ...), using gcc |
| 143 | # rationale: gcc versions by Linux distributions tend to be quite messed up |
| 144 | COMPILERFAIL:=0 |
| 145 | ifeq ($(CONFIG_COMPILER_GCC),y) |
| 146 | ifneq ($(CONFIG_ANY_TOOLCHAIN),y) |
| 147 | $(foreach arch,$(sort $(foreach stage,$(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \ |
| 148 | $(if $(shell $(CC_$(arch)) -v 2>&1 |grep -q "gcc version .*coreboot toolchain" || echo not-coreboot), \ |
| 149 | $(eval COMPILERFAIL:=1)$(warning Please use the coreboot toolchain for '$(arch)' (or prove that your toolchain works)))) |
| 150 | endif |
| 151 | endif |
| 152 | endif |
| 153 | ifeq ($(COMPILERFAIL),1) |
| 154 | $(error consider building our compilers: make crossgcc) |
| 155 | endif |