From: Joelle van Dyne Date: Tue, 26 Jan 2021 01:24:54 +0000 (-0800) Subject: configure: cross compile should use x86_64 cpu_family X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f6bca9dff5c9ae3a5afc4678866080ccd5120318;p=qemu.git configure: cross compile should use x86_64 cpu_family Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Joelle van Dyne Message-id: 20210126012457.39046-9-j@getutm.app Signed-off-by: Peter Maydell --- diff --git a/configure b/configure index e520a43406..5cf075ac60 100755 --- a/configure +++ b/configure @@ -6305,9 +6305,12 @@ if test "$cross_compile" = "yes"; then echo "system = 'darwin'" >> $cross fi case "$ARCH" in - i386|x86_64) + i386) echo "cpu_family = 'x86'" >> $cross ;; + x86_64) + echo "cpu_family = 'x86_64'" >> $cross + ;; ppc64le) echo "cpu_family = 'ppc64'" >> $cross ;;