From: Roger Pau Monne Date: Mon, 2 Jul 2018 08:28:23 +0000 (+0200) Subject: firmware/seabios: fix build on systems with non GNU toolchains X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~3653 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=1233d253a4cab502e26abef2c7d648788bb722ff;p=xen.git firmware/seabios: fix build on systems with non GNU toolchains SeaBIOS requires gcc and GNU ld in order to build, so allow setting SEABIOSCC and SEABIOSLD by the caller when building in order to pass the path to the compiler and linker that should be used when building SeaBIOS. Note that the LD32BIT-y variable was used by FreeBSD builds and is no longer needed due to the ability to select the LD to use for SeaBIOS builds, so remove it. Signed-off-by: Roger Pau Monné Acked-by: Wei Liu --- diff --git a/tools/firmware/Makefile b/tools/firmware/Makefile index 5a7cf7766d..842b48c3d3 100644 --- a/tools/firmware/Makefile +++ b/tools/firmware/Makefile @@ -19,7 +19,8 @@ SUBDIRS-$(CONFIG_ROMBIOS) += etherboot SUBDIRS-$(CONFIG_PV_SHIM) += xen-dir SUBDIRS-y += hvmloader -LD32BIT-$(CONFIG_FreeBSD) := LD32BIT_FLAG=-melf_i386_fbsd +SEABIOSCC ?= $(CC) +SEABIOSLD ?= $(LD) ovmf-dir: GIT=$(GIT) $(XEN_ROOT)/scripts/git-checkout.sh $(OVMF_UPSTREAM_URL) $(OVMF_UPSTREAM_REVISION) ovmf-dir @@ -28,7 +29,7 @@ ovmf-dir: seabios-dir: GIT=$(GIT) $(XEN_ROOT)/scripts/git-checkout.sh $(SEABIOS_UPSTREAM_URL) $(SEABIOS_UPSTREAM_REVISION) seabios-dir cp seabios-config seabios-dir/.config; - $(MAKE) -C seabios-dir olddefconfig + $(MAKE) -C seabios-dir olddefconfig CC=$(SEABIOSCC) LD=$(SEABIOSLD) .PHONY: all all: $(SUBDIRS-y) @@ -41,8 +42,7 @@ ifeq ($(CONFIG_ROMBIOS),y) false ; \ fi endif - $(MAKE) $(LD32BIT-y) CC=$(CC) PYTHON=$(PYTHON) subdirs-$@ - + $(MAKE) CC=$(CC) PYTHON=$(PYTHON) subdirs-$@ .PHONY: install install: all @@ -114,7 +114,7 @@ seabios-dir-force-update: seabios-dir subdir-clean-seabios-dir: set -e; if test -d seabios-dir/.; then \ - $(MAKE) -C seabios-dir clean; \ + $(MAKE) -C seabios-dir CC=$(SEABIOSCC) LD=$(SEABIOSLD) clean; \ fi subtree-force-update: @@ -128,3 +128,6 @@ endif subtree-force-update-all: $(MAKE) seabios-dir-force-update $(MAKE) ovmf-dir-force-update + +subdir-all-seabios-dir: seabios-dir + $(MAKE) -C $< CC=$(SEABIOSCC) LD=$(SEABIOSLD) PYTHON=$(PYTHON) all;