diff options
author | Paolo Bonzini | 2022-06-15 11:42:01 +0200 |
---|---|---|
committer | Paolo Bonzini | 2022-07-06 09:31:15 +0200 |
commit | 640aabc8ae65f471daf67fdc41fed00d6d795a65 (patch) | |
tree | a2caf1a48b569bc48c934f5d2c639dc9e6082309 /pc-bios | |
parent | pc-bios/optionrom: use -m16 unconditionally (diff) | |
download | qemu-640aabc8ae65f471daf67fdc41fed00d6d795a65.tar.gz qemu-640aabc8ae65f471daf67fdc41fed00d6d795a65.tar.xz qemu-640aabc8ae65f471daf67fdc41fed00d6d795a65.zip |
configure, pc-bios/optionrom: pass cross CFLAGS correctly
The optionrom build is disregarding the flags passed to the configure
script via --cross-cflags-i386. Pass it down and add it to the Makefile.
This will make it possible to get the -m32 flag from $target_cflags to
force a 32-bit build on 64-bit hosts, instead of supplying manually the
arcane -Wa,-32 and linker emulation options.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'pc-bios')
-rw-r--r-- | pc-bios/optionrom/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pc-bios/optionrom/Makefile b/pc-bios/optionrom/Makefile index ea89ce9d59..e90ca2e1c6 100644 --- a/pc-bios/optionrom/Makefile +++ b/pc-bios/optionrom/Makefile @@ -11,7 +11,7 @@ CFLAGS = -O2 -g quiet-command = $(if $(V),$1,$(if $(2),@printf " %-7s %s\n" $2 $3 && $1, @$1)) cc-option = $(if $(shell $(CC) $1 -c -o /dev/null -xc /dev/null >/dev/null 2>&1 && echo OK), $1, $2) -override CFLAGS += -march=i486 -Wall -m16 +override CFLAGS += -march=i486 -Wall $(EXTRA_CFLAGS) -m16 # If -fcf-protection is enabled in flags or compiler defaults that will # conflict with -march=i486 |