Patrick Georgi has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/43145 )
Change subject: build system: Rely on xcompile for HOSTCC and HOSTCXX ......................................................................
build system: Rely on xcompile for HOSTCC and HOSTCXX
It already looks for them, so let's use the result instead of blindly defaulting to gcc/g++.
Change-Id: I3e50c70a609f1903a925610928f8779c191040d8 Signed-off-by: Patrick Georgi pgeorgi@google.com --- M Makefile 1 file changed, 0 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/45/43145/1
diff --git a/Makefile b/Makefile index 6a96f9d..ba1e280 100644 --- a/Makefile +++ b/Makefile @@ -61,8 +61,6 @@ # Disable implicit/built-in rules to make Makefile errors fail fast. .SUFFIXES:
-HOSTCC := $(if $(shell type gcc 2>/dev/null),gcc,cc) -HOSTCXX = g++ HOSTCFLAGS := -g HOSTCXXFLAGS := -g