On Big Sur M1, force a x86_64 native build and count on Rosetta to make job as arm64 is not yet supported.

This commit is contained in:
Christian Jullien 2021-07-08 09:37:37 +02:00
parent 6e76d894fe
commit ab13f1a25a

9
configure vendored
View File

@ -60,6 +60,15 @@ case $targetos in
cc=`readlink $cc || echo clang`
tcc_usrinclude="`xcrun --show-sdk-path`/usr/include"
DLLSUF=".dylib"
case $cpu in
arm64)
# We cannot yet build a native arm64 version,
# Use x86_64 and count on Rosetta to make the job.
cpu=x86_64
CFLAGS="$CFLAGS -arch $cpu"
LDFLAGS="$LDFLAGS -arch $cpu"
;;
esac
;;
Windows_NT|MINGW*|MSYS*|CYGWIN*)
mingw32=yes