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:
parent
6e76d894fe
commit
ab13f1a25a
1 changed files with 9 additions and 0 deletions
9
configure
vendored
9
configure
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue