diff mbox series

[v6,5/7] configure: cross compile should use x86_64 cpu_family

Message ID 20210105022055.12113-6-j@getutm.app (mailing list archive)
State New, archived
Headers show
Series iOS and Apple Silicon host support | expand

Commit Message

Joelle van Dyne Jan. 5, 2021, 2:20 a.m. UTC
Signed-off-by: Joelle van Dyne <j@getutm.app>
---
 configure | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

Comments

Philippe Mathieu-Daudé Jan. 12, 2021, 11:46 a.m. UTC | #1
On 1/5/21 3:20 AM, Joelle van Dyne wrote:
> Signed-off-by: Joelle van Dyne <j@getutm.app>
> ---
>  configure | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/configure b/configure
> index 09dd22ebad..79dc9811e8 100755
> --- a/configure
> +++ b/configure
> @@ -7033,9 +7033,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
>              ;;
> 

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
diff mbox series

Patch

diff --git a/configure b/configure
index 09dd22ebad..79dc9811e8 100755
--- a/configure
+++ b/configure
@@ -7033,9 +7033,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
             ;;