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 | ## |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 15 | |
Patrick Georgi | e47477e | 2014-05-17 18:38:10 +0200 | [diff] [blame] | 16 | # ccache integration |
| 17 | ifeq ($(CONFIG_CCACHE),y) |
| 18 | |
| 19 | CCACHE:=$(word 1,$(wildcard $(addsuffix /ccache,$(subst :, ,$(PATH))))) |
| 20 | ifeq ($(CCACHE),) |
| 21 | $(error ccache selected, but not found in PATH) |
| 22 | endif |
| 23 | |
| 24 | export CCACHE_COMPILERCHECK=content |
| 25 | export CCACHE_BASEDIR=$(top) |
| 26 | |
| 27 | $(foreach arch,$(ARCH_SUPPORTED), \ |
| 28 | $(eval CC_$(arch):=$(CCACHE) $(CC_$(arch)))) |
| 29 | |
| 30 | HOSTCC:=$(CCACHE) $(HOSTCC) |
| 31 | HOSTCXX:=$(CCACHE) $(HOSTCXX) |
| 32 | ROMCC=$(CCACHE) $(ROMCC_BIN) |
| 33 | endif |
Patrick Georgi | fadbe5f | 2014-05-17 18:26:38 +0200 | [diff] [blame] | 34 | |
| 35 | # scan-build integration |
| 36 | ifneq ($(CCC_ANALYZER_OUTPUT_FORMAT),) |
| 37 | |
| 38 | ifeq ($(CCC_ANALYZER_ANALYSIS),) |
| 39 | export CCC_ANALYZER_ANALYSIS := -analyzer-opt-analyze-headers |
| 40 | endif |
| 41 | |
| 42 | $(foreach arch,$(ARCH_SUPPORTED), \ |
Patrick Georgi | e47477e | 2014-05-17 18:38:10 +0200 | [diff] [blame] | 43 | $(eval CC_$(arch):=CCC_CC="$(CC_$(arch))" $(CC) )) |
Patrick Georgi | fadbe5f | 2014-05-17 18:26:38 +0200 | [diff] [blame] | 44 | |
| 45 | HOSTCC:=CCC_CC="$(HOSTCC)" $(CC) |
| 46 | HOSTCXX:=CCC_CXX="$(HOSTCXX)" $(CXX) |
| 47 | ROMCC=CCC_CC="$(ROMCC_BIN)" $(CC) |
| 48 | endif |
| 49 | |
Julius Werner | e91d170 | 2017-03-20 15:32:15 -0700 | [diff] [blame] | 50 | COREBOOT_STANDARD_STAGES := bootblock verstage romstage ramstage |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 51 | |
Patrick Georgi | 8688def | 2015-03-28 16:27:42 +0100 | [diff] [blame] | 52 | ARCHDIR-i386 := x86 |
| 53 | ARCHDIR-x86_32 := x86 |
Martin Roth | cf0f6b8 | 2016-01-11 10:30:24 -0700 | [diff] [blame] | 54 | ARCHDIR-x86_64 := x86 |
Patrick Georgi | 8688def | 2015-03-28 16:27:42 +0100 | [diff] [blame] | 55 | ARCHDIR-arm := arm |
| 56 | ARCHDIR-arm64 := arm64 |
| 57 | ARCHDIR-riscv := riscv |
| 58 | ARCHDIR-mips := mips |
Ronald G. Minnich | b43efa6 | 2016-02-17 00:03:22 +0000 | [diff] [blame] | 59 | ARCHDIR-power8 := power8 |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 60 | |
Martin Roth | cf0f6b8 | 2016-01-11 10:30:24 -0700 | [diff] [blame] | 61 | CFLAGS_arm += |
| 62 | CFLAGS_arm64 += -mgeneral-regs-only |
Stefan Reinauer | d146ac6 | 2015-07-31 13:50:03 -0700 | [diff] [blame] | 63 | CFLAGS_mips += -mips32r2 -G 0 -mno-abicalls -fno-pic |
| 64 | CFLAGS_riscv += |
| 65 | CFLAGS_x86_32 += |
Martin Roth | cf0f6b8 | 2016-01-11 10:30:24 -0700 | [diff] [blame] | 66 | CFLAGS_x86_64 += -mcmodel=large -mno-red-zone |
Ronald G. Minnich | b43efa6 | 2016-02-17 00:03:22 +0000 | [diff] [blame] | 67 | CFLAGS_power8 += |
Stefan Reinauer | 4659113 | 2015-03-15 04:19:58 +0100 | [diff] [blame] | 68 | |
Julius Werner | 8d8799a | 2014-12-19 16:11:14 -0800 | [diff] [blame] | 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. |
| 73 | # |
| 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.) |
Patrick Georgi | eef1e98 | 2017-05-10 22:02:55 +0200 | [diff] [blame] | 82 | ifeq ($(CONFIG_COMPILER_GCC),y) |
Julius Werner | 8d8799a | 2014-12-19 16:11:14 -0800 | [diff] [blame] | 83 | CFLAGS_arm += -Wstack-usage=1536 |
| 84 | CFLAGS_arm64 += -Wstack-usage=1536 |
| 85 | CFLAGS_mips += -Wstack-usage=1536 |
| 86 | CFLAGS_riscv += -Wstack-usage=1536 |
Ronald G. Minnich | b43efa6 | 2016-02-17 00:03:22 +0000 | [diff] [blame] | 87 | CFLAGS_power8 += -Wstack-usage=1536 |
Patrick Georgi | eef1e98 | 2017-05-10 22:02:55 +0200 | [diff] [blame] | 88 | endif |
Julius Werner | 8d8799a | 2014-12-19 16:11:14 -0800 | [diff] [blame] | 89 | |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 90 | toolchain_to_dir = \ |
| 91 | $(foreach arch,$(ARCH_SUPPORTED),\ |
Patrick Georgi | b145b83 | 2014-05-17 15:08:47 +0200 | [diff] [blame] | 92 | $(eval CPPFLAGS_$(arch) += \ |
Patrick Georgi | 4ebd3d9 | 2014-05-17 14:02:08 +0200 | [diff] [blame] | 93 | -Isrc/arch/$(ARCHDIR-$(arch))/include)) |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 94 | |
| 95 | # set_stage_toolchain: Decides the toolchain to be used by every stage |
| 96 | # E.g.: If bootblock is x86_32, it sets ARCH-BOOTBLOCK-y = x86_32, whereas |
| 97 | # ARCH-BOOTBLOCK-n = armv7. Then, ARCH-BOOTBLOCK-y can be used anywhere to |
| 98 | # decide the compiler toolchain for bootblock stage |
| 99 | # This step is essential for initializing the toolchain for coreboot standard |
| 100 | # stages i.e. bootblock, romstage and ramstage, since it acts as the second |
| 101 | # parameter to create_class_compiler below in init_standard_toolchain |
Patrick Georgi | 27ef602 | 2015-04-30 14:25:14 +0200 | [diff] [blame] | 102 | map_stage = $(strip $(if $(MAP-$(1)),$(MAP-$(1)),$(1))) |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 103 | set_stage_toolchain= \ |
Martin Roth | cf0f6b8 | 2016-01-11 10:30:24 -0700 | [diff] [blame] | 104 | $(foreach arch,$(ARCH_SUPPORTED), \ |
| 105 | $(eval ARCH-$(1)-$($(shell \ |
| 106 | echo CONFIG_ARCH_$(call map_stage,$(1))_$(arch) | \ |
| 107 | tr '[:lower:]' '[:upper:]')) := $(arch))) |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 108 | |
Nico Huber | be5492a | 2015-09-29 16:41:19 +0200 | [diff] [blame] | 109 | # standard-archs: Tell which architectures are used by the standard stages. |
| 110 | standard-archs = $(sort $(foreach stagearch, \ |
| 111 | $(patsubst %,ARCH-%-y,$(COREBOOT_STANDARD_STAGES)), \ |
| 112 | $($(stagearch)))) |
| 113 | |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 114 | # create_class_compiler: Used to create compiler tool set for |
| 115 | # special classes |
| 116 | # @1: special class |
| 117 | # @2: compiler set to be used |
| 118 | # e.g.: smm special class uses i386 as compiler set |
| 119 | define create_class_compiler |
Martin Roth | 9a162d7 | 2016-08-01 19:57:02 -0600 | [diff] [blame] | 120 | $(if $(2),,$(warning *** The toolchain architecture for $(1) is unknown.) \ |
| 121 | $(error Check your .config file for CONFIG_ARCH_$(1)_* settings)) |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 122 | CC_$(1) := $(CC_$(2)) |
Nico Huber | 1850aa6 | 2017-09-03 23:42:58 +0200 | [diff] [blame] | 123 | GCC_$(1) := $(GCC_CC_$(2)) |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 124 | LD_$(1) := $(LD_$(2)) |
| 125 | NM_$(1) := $(NM_$(2)) |
Daisuke Nojiri | 9b1cb58 | 2014-06-19 19:01:34 -0700 | [diff] [blame] | 126 | AR_$(1) := $(AR_$(2)) |
Nico Huber | 2e09d2b | 2016-01-14 01:13:33 +0100 | [diff] [blame] | 127 | GNATBIND_$(1) := $(GNATBIND_$(2)) |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 128 | OBJCOPY_$(1) := $(OBJCOPY_$(2)) |
| 129 | OBJDUMP_$(1) := $(OBJDUMP_$(2)) |
| 130 | STRIP_$(1) := $(STRIP_$(2)) |
| 131 | READELF_$(1) := $(READELF_$(2)) |
Marc Jones | a38ccfd | 2014-11-06 15:50:22 -0700 | [diff] [blame] | 132 | CFLAGS_$(1) = $$(CFLAGS_common) $$(CFLAGS_$(2)) |
Nico Huber | 1850aa6 | 2017-09-03 23:42:58 +0200 | [diff] [blame] | 133 | ADAFLAGS_$(1) = --RTS=$$(obj)/libgnat-$(2)/ $$(ADAFLAGS_common) $$(GCC_CFLAGS_$(2)) |
Julius Werner | d3634c1 | 2015-11-13 13:28:41 -0800 | [diff] [blame] | 134 | CPPFLAGS_$(1) = $$(CPPFLAGS_common) $$(CPPFLAGS_$(2)) -D__ARCH_$(2)__ |
Patrick Georgi | 527f392 | 2015-06-04 13:31:38 +0200 | [diff] [blame] | 135 | COMPILER_RT_$(1) := $$(COMPILER_RT_$(2)) |
| 136 | COMPILER_RT_FLAGS_$(1) := $$(COMPILER_RT_FLAGS_$(2)) |
Aaron Durbin | d4dd44c | 2015-09-06 10:15:17 -0500 | [diff] [blame] | 137 | LDFLAGS_$(1) = $$(LDFLAGS_common) $$(LDFLAGS_$(2)) |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 138 | endef |
| 139 | |
Furquan Shaikh | 133096b | 2014-07-31 09:28:55 -0700 | [diff] [blame] | 140 | # define_class: Allows defining any program as dynamic class and compiler tool |
| 141 | # set for the same based on the architecture for which the program is to be |
| 142 | # compiled |
| 143 | # @1: program (class name) |
| 144 | # @2: architecture for which the program needs to be compiled |
| 145 | # IMP: Ensure that define_class is called before any .c or .S files are added to |
| 146 | # the class of the program. Check subdirs-y for order of subdirectory inclusions |
| 147 | define define_class |
| 148 | classes-y += $(1) |
| 149 | $(eval $(call create_class_compiler,$(1),$(2))) |
| 150 | endef |
| 151 | |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 152 | # initialize standard toolchain (CC,AS and others) for give stage |
| 153 | # @1 : stage for which the toolchain is to be initialized |
| 154 | init_standard_toolchain = \ |
Patrick Georgi | 4ebd3d9 | 2014-05-17 14:02:08 +0200 | [diff] [blame] | 155 | $(eval $(call set_stage_toolchain,$(1))) \ |
Patrick Georgi | 262f31c | 2014-05-17 15:13:40 +0200 | [diff] [blame] | 156 | $(eval $(call create_class_compiler,$(1),$(ARCH-$(1)-y))) |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 157 | |
| 158 | init_stages = \ |
Martin Roth | cf0f6b8 | 2016-01-11 10:30:24 -0700 | [diff] [blame] | 159 | $(foreach stage,$(COREBOOT_STANDARD_STAGES), \ |
| 160 | $(eval $(call init_standard_toolchain,$(stage)))) |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 161 | |
Furquan Shaikh | 99ac98f | 2014-04-23 10:18:48 -0700 | [diff] [blame] | 162 | $(eval $(call toolchain_to_dir)) |
| 163 | |
| 164 | $(call init_stages) |
Patrick Georgi | 1053f65 | 2015-03-26 21:39:12 +0100 | [diff] [blame] | 165 | |
Martin Roth | 3fb73c2 | 2015-12-07 14:04:27 -0700 | [diff] [blame] | 166 | # Test for coreboot toolchain (except when explicitly not requested) |
Patrick Georgi | 1053f65 | 2015-03-26 21:39:12 +0100 | [diff] [blame] | 167 | ifneq ($(NOCOMPILE),1) |
Martin Roth | a656362 | 2016-01-15 14:56:06 -0700 | [diff] [blame] | 168 | # Only run if we're doing a build (not for tests, kconfig, ...) |
Patrick Georgi | 1053f65 | 2015-03-26 21:39:12 +0100 | [diff] [blame] | 169 | # rationale: gcc versions by Linux distributions tend to be quite messed up |
Martin Roth | a23e2ce | 2015-12-07 14:07:10 -0700 | [diff] [blame] | 170 | # llvm/clang also needs patches supplied by the coreboot build |
Patrick Georgi | 1053f65 | 2015-03-26 21:39:12 +0100 | [diff] [blame] | 171 | COMPILERFAIL:=0 |
Martin Roth | d9c193d | 2015-11-26 22:34:42 -0700 | [diff] [blame] | 172 | IASLFAIL:=0 |
Martin Roth | a23e2ce | 2015-12-07 14:07:10 -0700 | [diff] [blame] | 173 | |
Patrick Georgi | 1053f65 | 2015-03-26 21:39:12 +0100 | [diff] [blame] | 174 | ifneq ($(CONFIG_ANY_TOOLCHAIN),y) |
Martin Roth | a656362 | 2016-01-15 14:56:06 -0700 | [diff] [blame] | 175 | # Verify that the coreboot toolchain is being used. |
Martin Roth | cf0f6b8 | 2016-01-11 10:30:24 -0700 | [diff] [blame] | 176 | $(foreach arch,$(sort $(foreach stage,\ |
| 177 | $(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \ |
| 178 | $(if $(shell if [ -n "$(CC_$(arch))" ]; then \ |
| 179 | $(CC_$(arch)) -v 2>&1 | grep -q "coreboot toolchain" || \ |
| 180 | echo not-coreboot; else echo not-coreboot; fi), \ |
| 181 | $(eval COMPILERFAIL:=1)\ |
| 182 | $(warning The coreboot toolchain for '$(arch)'\ |
| 183 | architecture was not found.))) |
Martin Roth | a656362 | 2016-01-15 14:56:06 -0700 | [diff] [blame] | 184 | # If iasl doesn't match the current coreboot version, fail the test |
| 185 | # TODO: Figure out if iasl is even needed for the build. |
Martin Roth | cf0f6b8 | 2016-01-11 10:30:24 -0700 | [diff] [blame] | 186 | $(if $(shell if [ -n "$(IASL)" ]; then \ |
Martin Roth | ab8f923 | 2016-01-05 16:14:12 -0700 | [diff] [blame] | 187 | $(IASL) -v 2>&1 | grep -q "coreboot toolchain" || \ |
Martin Roth | cf0f6b8 | 2016-01-11 10:30:24 -0700 | [diff] [blame] | 188 | echo not-coreboot; else echo not-coreboot; fi), \ |
| 189 | $(eval COMPILERFAIL:=1)$(eval IASLFAIL:=1)\ |
| 190 | $(warning The coreboot toolchain version of iasl \ |
| 191 | '$(shell util/crossgcc/buildgcc -s iasl)' was not found)) |
Martin Roth | af91b8b | 2015-12-07 14:33:44 -0700 | [diff] [blame] | 192 | else #$(CONFIG_ANY_TOOLCHAIN) |
Martin Roth | a656362 | 2016-01-15 14:56:06 -0700 | [diff] [blame] | 193 | # If the coreboot toolchain isn't being used, verify that there is A toolchain |
Martin Roth | cf0f6b8 | 2016-01-11 10:30:24 -0700 | [diff] [blame] | 194 | $(foreach arch,$(sort \ |
| 195 | $(foreach stage,$(COREBOOT_STANDARD_STAGES),$(ARCH-$(stage)-y))), \ |
Martin Roth | af91b8b | 2015-12-07 14:33:44 -0700 | [diff] [blame] | 196 | $(if $(CC_$(arch)),, $(eval COMPILERFAIL:=1) \ |
Martin Roth | cf0f6b8 | 2016-01-11 10:30:24 -0700 | [diff] [blame] | 197 | $(warning No compiler found for '$(arch)' architecture. \ |
| 198 | Install one or use the coreboot toolchain?)) ) |
Martin Roth | a656362 | 2016-01-15 14:56:06 -0700 | [diff] [blame] | 199 | # If iasl isn't present, fail |
| 200 | # TODO: Figure out if iasl is even needed for the build. |
Martin Roth | af91b8b | 2015-12-07 14:33:44 -0700 | [diff] [blame] | 201 | $(if $(IASL),, $(eval COMPILERFAIL:=1)$(eval IASLFAIL:=1) \ |
Martin Roth | cf0f6b8 | 2016-01-11 10:30:24 -0700 | [diff] [blame] | 202 | $(warning iasl not found. \ |
| 203 | Please install it or use the coreboot toolchain.)) |
Patrick Georgi | 1053f65 | 2015-03-26 21:39:12 +0100 | [diff] [blame] | 204 | endif |
Martin Roth | a656362 | 2016-01-15 14:56:06 -0700 | [diff] [blame] | 205 | |
| 206 | # If the compiler check failed, print out warnings |
Patrick Georgi | 1053f65 | 2015-03-26 21:39:12 +0100 | [diff] [blame] | 207 | ifeq ($(COMPILERFAIL),1) |
Martin Roth | 019cdbf | 2015-12-07 14:13:40 -0700 | [diff] [blame] | 208 | ifneq ($(XGCCPATH),) |
| 209 | $(warning ) |
| 210 | $(warning Path to your toolchain is currently set to '$(XGCCPATH)') |
| 211 | endif |
Martin Roth | 335a9b6 | 2015-11-25 12:44:15 -0700 | [diff] [blame] | 212 | $(warning ) |
Martin Roth | ada36d4 | 2015-12-07 14:27:34 -0700 | [diff] [blame] | 213 | $(warning To build the entire coreboot toolchain: run 'make crossgcc') |
Martin Roth | d9c193d | 2015-11-26 22:34:42 -0700 | [diff] [blame] | 214 | ifeq ($(IASLFAIL),1) |
Martin Roth | ada36d4 | 2015-12-07 14:27:34 -0700 | [diff] [blame] | 215 | $(warning To build just IASL: run 'make iasl') |
Martin Roth | 73b7997 | 2015-12-07 14:20:55 -0700 | [diff] [blame] | 216 | endif #($(IASLFAIL),1) |
Martin Roth | ada36d4 | 2015-12-07 14:27:34 -0700 | [diff] [blame] | 217 | $(warning For more toolchain build targets: run 'make help_toolchain') |
Martin Roth | 335a9b6 | 2015-11-25 12:44:15 -0700 | [diff] [blame] | 218 | $(warning ) |
Martin Roth | 5981a63 | 2015-12-07 14:24:57 -0700 | [diff] [blame] | 219 | ifneq ($(CONFIG_ANY_TOOLCHAIN),y) |
Martin Roth | cf0f6b8 | 2016-01-11 10:30:24 -0700 | [diff] [blame] | 220 | $(warning To try to use any toolchain in your path, \ |
| 221 | run 'make menuconfig', then select) |
| 222 | $(warning the config option: 'General setup', \ |
| 223 | and 'Allow building with any toolchain') |
| 224 | $(warning Note that this is NOT supported. \ |
| 225 | Using it means you're on your own.) |
Martin Roth | 5981a63 | 2015-12-07 14:24:57 -0700 | [diff] [blame] | 226 | $(warning ) |
| 227 | endif #($(CONFIG_ANY_TOOLCHAIN),y) |
| 228 | $(error Halting the build) |
Martin Roth | 73b7997 | 2015-12-07 14:20:55 -0700 | [diff] [blame] | 229 | endif #($(COMPILERFAIL),1) |
| 230 | |
| 231 | endif #($(NOCOMPILE),1) |
Martin Roth | aede3fc | 2016-01-05 16:07:42 -0700 | [diff] [blame] | 232 | |
Martin Roth | a656362 | 2016-01-15 14:56:06 -0700 | [diff] [blame] | 233 | # Run the toolchain version checks if the requested target is 'test-toolchain' |
| 234 | # Checks the versions of GCC, binutils, clang, and IASL |
Martin Roth | aede3fc | 2016-01-05 16:07:42 -0700 | [diff] [blame] | 235 | ifneq ($(MAKECMDGOALS),) |
| 236 | ifneq ($(filter test-toolchain,$(MAKECMDGOALS)),) |
| 237 | $(foreach arch, $(ARCH_SUPPORTED), \ |
Martin Roth | cf0f6b8 | 2016-01-11 10:30:24 -0700 | [diff] [blame] | 238 | $(if $(shell if [ -n "$(GCC_CC_$(arch))" ]; then \ |
| 239 | $(GCC_CC_$(arch)) -v 2>&1 | \ |
| 240 | grep -q "$(shell util/crossgcc/buildgcc -s gcc)" || \ |
| 241 | echo not-current; fi), \ |
| 242 | $(eval COMPILER_OUT_OF_DATE:=1) \ |
| 243 | $(warning The coreboot toolchain version of gcc for '$(arch)' \ |
| 244 | architecture is not the current version.)) \ |
| 245 | $(if $(shell if [ -n "$(CLANG_CC_$(arch))" ]; then \ |
| 246 | $(CLANG_CC_$(arch)) -v 2>&1 | \ |
| 247 | grep -q "$(shell util/crossgcc/buildgcc -s clang)" || \ |
| 248 | echo not-current; fi), \ |
| 249 | $(eval COMPILER_OUT_OF_DATE:=1)\ |
| 250 | $(warning The coreboot toolchain version of clang for \ |
| 251 | '$(arch)' architecture is not the current version.)) \ |
| 252 | $(if $(shell if [ "$(OBJDUMP_$(arch))" != "invalidobjdump" ]; then \ |
| 253 | $(OBJDUMP_$(arch)) -v 2>&1 | \ |
| 254 | grep -q "$(shell util/crossgcc/buildgcc -s binutils)" || \ |
| 255 | echo not-current; fi), \ |
| 256 | $(eval COMPILER_OUT_OF_DATE:=1)\ |
| 257 | $(warning The coreboot toolchain version of binutils for \ |
| 258 | '$(arch)' architecture is not the current version.)) \ |
Martin Roth | aede3fc | 2016-01-05 16:07:42 -0700 | [diff] [blame] | 259 | ) |
Martin Roth | cf0f6b8 | 2016-01-11 10:30:24 -0700 | [diff] [blame] | 260 | $(if $(shell if [ -n "$(IASL)" ]; then $(IASL) -v 2>&1 | \ |
| 261 | grep -q "$(shell util/crossgcc/buildgcc -s iasl)" || \ |
| 262 | echo not-coreboot; fi), \ |
| 263 | $(eval COMPILER_OUT_OF_DATE:=1)\ |
| 264 | $(warning The coreboot toolchain version of iasl \ |
| 265 | is not the current version)) |
Martin Roth | a656362 | 2016-01-15 14:56:06 -0700 | [diff] [blame] | 266 | endif #($(filter crossgcc_check%,$(MAKECMDGOALS)),) |
| 267 | endif #($(MAKECMDGOALS),) |