The 32-bit PPC target doesn't use the legacy ldst_phys() API anymore. Set the TARGET_NOT_USING_LEGACY_LDST_PHYS_API variable to hide the legacy API to the qemu-system-ppc binary, avoiding further API uses to creep in.
Signed-off-by: Philippe Mathieu-Daudé <[email protected]> --- configs/targets/ppc-softmmu.mak | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/targets/ppc-softmmu.mak b/configs/targets/ppc-softmmu.mak index 867898bd47c..ae7d593bf0d 100644 --- a/configs/targets/ppc-softmmu.mak +++ b/configs/targets/ppc-softmmu.mak @@ -3,3 +3,4 @@ TARGET_BIG_ENDIAN=y TARGET_KVM_HAVE_GUEST_DEBUG=y TARGET_XML_FILES= power-core.xml power-fpu.xml power-altivec.xml power-spe.xml TARGET_LONG_BITS=32 +TARGET_NOT_USING_LEGACY_LDST_PHYS_API=y -- 2.53.0
