Merge pull request #4 from status-im/m1

crosscompile to amd64 when building on darwin/arm64
This commit is contained in:
Iuri Matias 2021-09-28 15:14:44 -04:00 committed by GitHub
commit 86335d3fa6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

@ -22,6 +22,19 @@
#
ifeq ($(OS),Windows_NT) # is Windows_NT on XP, 2000, 7, Vista, 10...
detected_OS := Windows
else
detected_OS := $(strip $(shell uname))
endif
ifeq ($(detected_OS),Darwin)
ifeq ("$(shell sysctl -nq hw.optional.arm64)","1")
# Building on M1 is still not supported, so in the meantime we crosscompile to amd64
CFLAGS += -target x86_64-apple-macos10.12
endif
endif
# ---- Configuration options ----
# External/implicit variables: