]> Savannah Git Hosting - gnulib.git/commitdiff
multiarch: Prepare for x86_64+arm64 universal binaries in macOS 11.
authorBruno Haible <bruno@clisp.org>
Sun, 26 Jul 2020 00:00:11 +0000 (02:00 +0200)
committerBruno Haible <bruno@clisp.org>
Sun, 26 Jul 2020 00:00:11 +0000 (02:00 +0200)
* m4/multiarch.m4 (gl_MULTIARCH): Recognize also the ARM architectures.

ChangeLog
m4/multiarch.m4

index e1c40b346c6bb8e253caf89ff14441054da6c555..14feb86fd3adb3adc01cd34a04e38e4fa0bb0290 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2020-07-25  Bruno Haible  <bruno@clisp.org>
+
+       multiarch: Prepare for x86_64+arm64 universal binaries in macOS 11.
+       * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the ARM architectures.
+
 2020-07-25  Bruno Haible  <bruno@clisp.org>
 
        sigprocmask: Small autoconf macro improvement.
index 69b43df3aa19dd508847edbb0226b439b2a8d161..2c61afbd76e2625d7093367bcf281aebf425ec8c 100644 (file)
@@ -1,4 +1,4 @@
-# multiarch.m4 serial 8
+# multiarch.m4 serial 9
 dnl Copyright (C) 2008-2020 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -39,7 +39,7 @@ AC_DEFUN_ONCE([gl_MULTIARCH],
         for word in ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}; do
           if test -n "$prev"; then
             case $word in
-              i?86 | x86_64 | ppc | ppc64)
+              i?86 | x86_64 | ppc | ppc64 | arm | arm64)
                 if test -z "$arch" || test "$arch" = "$word"; then
                   arch="$word"
                 else