Fix macOS Apple Silicon architecture name (arm64)

This commit is contained in:
Michael R Sweet 2021-07-17 11:24:26 -04:00
parent 787c67afea
commit 15f1b6b5c4
No known key found for this signature in database
GPG Key ID: BE67C75EC81F3244
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ AC_PATH_TOOL(PKGCONFIG, pkg-config)
dnl Architecture and optimization options...
ARCHFLAGS="${ARCHFLAGS:=}"
AC_ARG_WITH([archflags], AS_HELP_STRING([--with-archflags="flags"], [use custom architecture flags (default=none, macOS values include "-arch arm64e", "-arch i386", "-arch ppc", and "-arch x86_64")]), [
AC_ARG_WITH([archflags], AS_HELP_STRING([--with-archflags="flags"], [use custom architecture flags (default=none, macOS values include "-arch arm64", "-arch i386", "-arch ppc", and "-arch x86_64")]), [
ARCHFLAGS="$withval"
])
AC_SUBST(ARCHFLAGS)