projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0ca321e
)
configure: cross compile should use x86_64 cpu_family
author
Joelle van Dyne
<j@getutm.app>
Tue, 26 Jan 2021 01:24:54 +0000
(17:24 -0800)
committer
Peter Maydell
<peter.maydell@linaro.org>
Fri, 29 Jan 2021 10:47:28 +0000
(10:47 +0000)
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>
configure
patch
|
blob
|
history
diff --git
a/configure
b/configure
index e520a4340650bbaa70b4a37ab9f0fcf89b5a98b3..5cf075ac60e06a6b7ac31525b158c773cb3f2228 100755
(executable)
--- 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
;;