blob: f7da7de5dadb0a53553b71cfeb8dec60c3dda29c [file] [log] [blame]
Stefan Reinauerd5779c12016-01-29 17:48:47 -08001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2016 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
Stefan Reinauer0ca5f332016-02-02 17:51:39 -080016TOOLCHAIN_ARCHES := i386 x64 arm aarch64 mips riscv power8 nds32le
Patrick Georgi6c0ccfb2016-01-30 09:14:45 +010017
Stefan Reinauerd5779c12016-01-29 17:48:47 -080018help_toolchain help::
19 @echo '*** Toolchain targets ***'
20 @echo ' crossgcc - Build coreboot cross-compilers for all platforms'
21 @echo ' crosstools - Build coreboot cross-compiler and GDB for all platforms'
22 @echo ' crossgcc-clean - Remove all built coreboot cross-compilers'
23 @echo ' iasl - Build coreboot IASL compiler (built by all cross targets)'
24 @echo ' clang - Build coreboot clang compiler'
Martin Roth109a7db2016-08-11 18:16:59 -060025 @echo ' gnumake - Build coreboot make'
Stefan Reinauerd5779c12016-01-29 17:48:47 -080026 @echo ' test-toolchain - Reports if toolchain components are out of date'
27 @echo ' crossgcc-ARCH - Build cross-compiler for specific architecture'
28 @echo ' crosstools-ARCH - Build cross-compiler with GDB for specific architecture'
Patrick Georgi6c0ccfb2016-01-30 09:14:45 +010029 @echo ' ARCH can be "$(subst $(spc),"$(comma) ",$(TOOLCHAIN_ARCHES))"'
Stefan Reinauerd5779c12016-01-29 17:48:47 -080030 @echo ' Use "make [target] CPUS=#" to build toolchain using multiple cores'
31 @echo
32
33# For the toolchain builds, use CPUS=x to use multiple processors to build
34# use BUILDGCC_OPTIONS= to set any crossgcc command line options
35# Example: BUILDGCC_OPTIONS='-t' will keep temporary files after build
36crossgcc: clean-for-update
37 $(MAKE) -C util/crossgcc all_without_gdb SKIP_CLANG=1
38
39.PHONY: crossgcc crossgcc-i386 crossgcc-x64 crossgcc-arm crossgcc-aarch64 \
40 crossgcc-mips crossgcc-riscv crossgcc-power8 crossgcc-clean iasl \
41 clang crosstools-i386 crosstools-x64 crosstools-arm \
Martin Roth21148802016-03-08 09:27:45 -070042 crosstools-aarch64 crosstools-mips crosstools-riscv crosstools-power8 \
Martin Roth109a7db2016-08-11 18:16:59 -060043 jenkins-build-toolchain gnumake
Stefan Reinauerd5779c12016-01-29 17:48:47 -080044
Patrick Georgi6c0ccfb2016-01-30 09:14:45 +010045$(foreach arch,$(TOOLCHAIN_ARCHES),crossgcc-$(arch)): clean-for-update
Patrick Georgi3df92622016-02-02 19:33:00 +010046 $(MAKE) -C util/crossgcc $(patsubst crossgcc-%,build-%,$@) build_iasl SKIP_GDB=1
Stefan Reinauerd5779c12016-01-29 17:48:47 -080047
48crosstools: clean-for-update
49 $(MAKE) -C util/crossgcc all_with_gdb SKIP_CLANG=1
50
51iasl: clean-for-update
52 $(MAKE) -C util/crossgcc build_iasl
53
54clang: clean-for-update
55 $(MAKE) -C util/crossgcc build_clang
56
Martin Roth109a7db2016-08-11 18:16:59 -060057gnumake: clean-for-update
58 $(MAKE) -C util/crossgcc build_make
59
Patrick Georgi6c0ccfb2016-01-30 09:14:45 +010060$(foreach arch,$(TOOLCHAIN_ARCHES),crosstools-$(arch)): clean-for-update
Patrick Georgi3df92622016-02-02 19:33:00 +010061 $(MAKE) -C util/crossgcc $(patsubst crosstools-%,build-%,$@) build_iasl
Stefan Reinauerd5779c12016-01-29 17:48:47 -080062
63crossgcc-clean: clean-for-update
64 $(MAKE) -C util/crossgcc clean
65
66test-toolchain:
67ifeq ($(COMPILER_OUT_OF_DATE),1)
68 echo "The coreboot toolchain is not the current version."
69 $(error )
70else
71 echo "The coreboot toolchain is the current version."
72endif # ifeq ($(COMPILER_OUT_OF_DATE),1)
Martin Roth21148802016-03-08 09:27:45 -070073
74# This target controls what the jenkins builder tests
Martin Rothab8f7d32016-12-07 10:45:55 -070075jenkins-build-toolchain: BUILDGCC_OPTIONS ?= -y --nocolor
Martin Roth21148802016-03-08 09:27:45 -070076jenkins-build-toolchain:
Martin Rothab8f7d32016-12-07 10:45:55 -070077 $(MAKE) crosstools clang KEEP_SOURCES=1 BUILDGCC_OPTIONS='$(BUILDGCC_OPTIONS)'
Martin Roth4c3b1562016-03-22 13:05:42 -060078 rm -f .xcompile
Martin Rotha5395802016-04-02 11:10:08 -060079 PATH=$(if $(DEST),$(DEST)/bin,$(top)/util/crossgcc/xgcc/bin):$$PATH; $(MAKE) what-jenkins-does
80 -cat .xcompile
81 PATH=$(if $(DEST),$(DEST)/bin,$(top)/util/crossgcc/xgcc/bin):$$PATH; $(MAKE) test-toolchain