diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2023-07-04 09:06:15 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-09-07 13:32:14 +0200 |
commit | b3403ed00b0dbf14a77d6a7be797861e7b7f4907 (patch) | |
tree | 4febd6c2336c35aa672d9a9a22efc5c0719c6e89 /tests | |
parent | a24f15d26f8cf0c0533c3422bebc70305626fc14 (diff) | |
download | qemu-b3403ed00b0dbf14a77d6a7be797861e7b7f4907.zip qemu-b3403ed00b0dbf14a77d6a7be797861e7b7f4907.tar.gz qemu-b3403ed00b0dbf14a77d6a7be797861e7b7f4907.tar.bz2 |
configure: remove HOST_CC
$(HOST_CC) is only used to invoke the preprocessor, and $(CC) can be
used instead now that there is a Tricore C compiler. Remove the variable
from config-host.mak.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/tcg/tricore/Makefile.softmmu-target | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tcg/tricore/Makefile.softmmu-target b/tests/tcg/tricore/Makefile.softmmu-target index aff7c1b..2ec0bd3 100644 --- a/tests/tcg/tricore/Makefile.softmmu-target +++ b/tests/tcg/tricore/Makefile.softmmu-target @@ -28,7 +28,7 @@ TESTS += test_context_save_areas.c.tst QEMU_OPTS += -M tricore_testboard -cpu tc27x -nographic -kernel %.pS: $(ASM_TESTS_PATH)/%.S - $(HOST_CC) -E -o $@ $< + $(CC) -E -o $@ $< %.o: %.pS $(AS) $(ASFLAGS) -o $@ $< |