Merge pull request #43 from equinox0815/topic/improve-arch-detection

switch to the output of 'uname -m' to detect ARM based systems
This commit is contained in:
graysky 2022-09-10 15:07:33 -04:00 committed by GitHub
commit 182e3607e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ INSTALL_DIR = $(INSTALL) -d
INSTALL_PROGRAM = $(INSTALL) -m755
INSTALL_DATA = $(INSTALL) -m644
IS_ARCH_ARM := $(shell grep -q ARM /proc/cpuinfo; echo $$?)
IS_ARCH_ARM := $(shell uname -m | grep -q -E "^(arm|aarch64)"; echo $$?)
ifeq ($(IS_ARCH_ARM), 0)
ARCH = arm
else