diff options
author | Joelle van Dyne <j@getutm.app> | 2021-01-25 17:24:54 -0800 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2021-01-29 10:47:28 +0000 |
commit | f6bca9dff5c9ae3a5afc4678866080ccd5120318 (patch) | |
tree | c346bf6cc54a4f4e479582611064f10805fe2249 /configure | |
parent | 0ca321eaf643ea432c4d2bd5a3f0177798a52542 (diff) | |
download | qemu-f6bca9dff5c9ae3a5afc4678866080ccd5120318.zip |
configure: cross compile should use x86_64 cpu_family
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Joelle van Dyne <j@getutm.app>
Message-id: 20210126012457.39046-9-j@getutm.app
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 ;; |