Update Makefile.linux
All checks were successful
Build (3DS) / build (push) Successful in 2m6s

Signed-off-by: angel <angel@sillyangel.dev>
This commit is contained in:
2025-12-09 09:11:28 -06:00
parent 88026628ea
commit 877e40b073

View File

@@ -15,6 +15,8 @@ else
HOST_ARCH := x86_64 HOST_ARCH := x86_64
else ifeq ($(UNAME_M),$(filter $(UNAME_M),i386 i686)) else ifeq ($(UNAME_M),$(filter $(UNAME_M),i386 i686))
HOST_ARCH := i686 HOST_ARCH := i686
else ifeq ($(UNAME_M),$(filter $(UNAME_M),aarch64 arm64))
HOST_ARCH := arm64
else else
$(error "Unsupported host architecture.") $(error "Unsupported host architecture.")
endif endif