This commit is contained in:
Pan7 2025-05-19 01:15:40 -04:00 committed by GitHub
commit 3c78caec37
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,6 +14,14 @@ ifeq ($(shell uname -m), aarch64)
COMPILE_ARCH=arm64
endif
ifneq (,$(findstring MINGW32,$(shell uname)))
COMPILE_PLATFORM=mingw32
endif
ifneq (,$(findstring MINGW64,$(shell uname)))
COMPILE_PLATFORM=mingw64
endif
ifeq ($(COMPILE_PLATFORM),sunos)
# Solaris uname and GNU uname differ
COMPILE_ARCH=$(shell uname -p | sed -e 's/i.86/x86/')