diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2019-08-07 16:35:21 +0200 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2019-09-10 09:38:33 +0100 |
commit | 6a9e0ef32a6b519a0c96d3dee5edc1321792c65a (patch) | |
tree | 2d4599fa122c7d50031e83c8c1e4f00e33089667 /tests/tcg/arm/Makefile.softmmu-target | |
parent | eea2153ea832b2279853df7061fb38c696cc06e2 (diff) | |
download | qemu-6a9e0ef32a6b519a0c96d3dee5edc1321792c65a.zip qemu-6a9e0ef32a6b519a0c96d3dee5edc1321792c65a.tar.gz qemu-6a9e0ef32a6b519a0c96d3dee5edc1321792c65a.tar.bz2 |
tests/tcg: use EXTRA_CFLAGS everywhere
For i386 specifically, this allows using the host GCC
to compile the i386 tests. But, it should really be
done for all targets, unless we want to pass $(EXTRA_CFLAGS)
directly as part of $(CC).
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20190807143523.15917-2-pbonzini@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Diffstat (limited to 'tests/tcg/arm/Makefile.softmmu-target')
-rw-r--r-- | tests/tcg/arm/Makefile.softmmu-target | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tcg/arm/Makefile.softmmu-target b/tests/tcg/arm/Makefile.softmmu-target index 49d48d8..2deb06e 100644 --- a/tests/tcg/arm/Makefile.softmmu-target +++ b/tests/tcg/arm/Makefile.softmmu-target @@ -18,7 +18,7 @@ CFLAGS+=-Wl,--build-id=none -x assembler-with-cpp LDFLAGS+=-nostdlib -N -static %: %.S %.ld - $(CC) $(CFLAGS) $(ASFLAGS) $< -o $@ $(LDFLAGS) -T $(ARM_SRC)/$@.ld + $(CC) $(CFLAGS) $(ASFLAGS) $(EXTRA_CFLAGS) $< -o $@ $(LDFLAGS) -T $(ARM_SRC)/$@.ld # Specific Test Rules |