mirror of
https://github.com/mirror/tinycc.git
synced 2025-03-24 10:00:07 +08:00
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
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…
Reference in New Issue
Block a user