From: Anthony PERARD Date: Thu, 21 Oct 2010 11:47:08 +0000 (+0100) Subject: configure: Always use 64bits target physical addresses with xen enabled. X-Git-Tag: v0.15.0-rc0~289^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64b3cfdb73fd08220ef848f71a2d0061e97ed7d8;p=thirdparty%2Fqemu.git configure: Always use 64bits target physical addresses with xen enabled. With MapCache, we can handle a 64b target, even with a 32b host/qemu. So, we need to have target_phys_addr_t to 64bits. Signed-off-by: Anthony PERARD Acked-by: Alexander Graf Signed-off-by: Alexander Graf --- diff --git a/configure b/configure index 6fc2bddc12e..3ba64015cd9 100755 --- a/configure +++ b/configure @@ -3298,6 +3298,7 @@ echo "TARGET_ABI_DIR=$TARGET_ABI_DIR" >> $config_target_mak case "$target_arch2" in i386|x86_64) if test "$xen" = "yes" -a "$target_softmmu" = "yes" ; then + target_phys_bits=64 echo "CONFIG_XEN=y" >> $config_target_mak if test "$cpu" = "i386" -o "$cpu" = "x86_64"; then echo "CONFIG_XEN_MAPCACHE=y" >> $config_target_mak