diff mbox series

[v1] tools: use HOSTCC/CPP to compile rombios code and helper

Message ID 20200518144400.16708-1-olaf@aepfle.de (mailing list archive)
State New, archived
Headers show
Series [v1] tools: use HOSTCC/CPP to compile rombios code and helper | expand

Commit Message

Olaf Hering May 18, 2020, 2:44 p.m. UTC
Use also HOSTCFLAGS for biossums while touching the code.

Spotted by inspecting build logfile.

Signed-off-by: Olaf Hering <olaf@aepfle.de>
---
 tools/firmware/rombios/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Andrew Cooper May 18, 2020, 2:45 p.m. UTC | #1
On 18/05/2020 15:44, Olaf Hering wrote:
> Use also HOSTCFLAGS for biossums while touching the code.
>
> Spotted by inspecting build logfile.
>
> Signed-off-by: Olaf Hering <olaf@aepfle.de>

Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
Wei Liu May 18, 2020, 5:03 p.m. UTC | #2
On Mon, May 18, 2020 at 04:44:00PM +0200, Olaf Hering wrote:
> Use also HOSTCFLAGS for biossums while touching the code.
> 
> Spotted by inspecting build logfile.
> 
> Signed-off-by: Olaf Hering <olaf@aepfle.de>

Acked-by: Wei Liu <wl@xen.org>

> ---
>  tools/firmware/rombios/Makefile | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/tools/firmware/rombios/Makefile b/tools/firmware/rombios/Makefile
> index 78237fd736..02abdb3038 100644
> --- a/tools/firmware/rombios/Makefile
> +++ b/tools/firmware/rombios/Makefile
> @@ -19,7 +19,7 @@ clean: subdirs-clean
>  distclean: clean
>  
>  BIOS-bochs-latest: rombios.c biossums 32bitgateway.c tcgbios.c
> -	gcc -DBX_SMP_PROCESSORS=1 -E -P $< > _rombios_.c
> +	$(CPP) -DBX_SMP_PROCESSORS=1 -P $< > _rombios_.c
>  	bcc -o rombios.s -C-c -D__i86__ -0 -S _rombios_.c
>  	sed -e 's/^\.text//' -e 's/^\.data//' rombios.s > _rombios_.s
>  	as86 _rombios_.s -b tmp.bin -u- -w- -g -0 -j -O -l rombios.txt
> @@ -29,6 +29,6 @@ BIOS-bochs-latest: rombios.c biossums 32bitgateway.c tcgbios.c
>  	rm -f _rombios_.s
>  
>  biossums: biossums.c
> -	gcc -o biossums biossums.c
> +	$(HOSTCC) $(HOSTCFLAGS) -o biossums biossums.c
>  
>  -include $(DEPS_INCLUDE)
diff mbox series

Patch

diff --git a/tools/firmware/rombios/Makefile b/tools/firmware/rombios/Makefile
index 78237fd736..02abdb3038 100644
--- a/tools/firmware/rombios/Makefile
+++ b/tools/firmware/rombios/Makefile
@@ -19,7 +19,7 @@  clean: subdirs-clean
 distclean: clean
 
 BIOS-bochs-latest: rombios.c biossums 32bitgateway.c tcgbios.c
-	gcc -DBX_SMP_PROCESSORS=1 -E -P $< > _rombios_.c
+	$(CPP) -DBX_SMP_PROCESSORS=1 -P $< > _rombios_.c
 	bcc -o rombios.s -C-c -D__i86__ -0 -S _rombios_.c
 	sed -e 's/^\.text//' -e 's/^\.data//' rombios.s > _rombios_.s
 	as86 _rombios_.s -b tmp.bin -u- -w- -g -0 -j -O -l rombios.txt
@@ -29,6 +29,6 @@  BIOS-bochs-latest: rombios.c biossums 32bitgateway.c tcgbios.c
 	rm -f _rombios_.s
 
 biossums: biossums.c
-	gcc -o biossums biossums.c
+	$(HOSTCC) $(HOSTCFLAGS) -o biossums biossums.c
 
 -include $(DEPS_INCLUDE)