mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
tci: Fix build breakage (unresolved symbol tcg_out_tb_finalize)
Commit 32761257c0
enabled
qemu_ld/st optimization unconditionally for some hosts.
The TCG interpreter still does not support this kind of
optimization. Therefore builds with TCI fail with an
unresolved symbol tcg_out_tb_finalize. This is fixed here.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
de91f53799
commit
1358681344
1 changed files with 4 additions and 1 deletions
3
configure
vendored
3
configure
vendored
|
@ -3891,7 +3891,10 @@ upper() {
|
||||||
|
|
||||||
case "$cpu" in
|
case "$cpu" in
|
||||||
i386|x86_64|ppc)
|
i386|x86_64|ppc)
|
||||||
|
# The TCG interpreter currently does not support ld/st optimization.
|
||||||
|
if test "$tcg_interpreter" = "no" ; then
|
||||||
echo "CONFIG_QEMU_LDST_OPTIMIZATION=y" >> $config_target_mak
|
echo "CONFIG_QEMU_LDST_OPTIMIZATION=y" >> $config_target_mak
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue