Merge pull request #26 from lpereira/armv7l-makefile-fix

Fix ARCH deduction on armv7l when using Makefiles
master
Ariadne Conill 2021-02-05 11:46:37 -07:00 committed by GitHub
commit f04d423e63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -10,6 +10,9 @@ endif
ifeq ($(ARCH),$(filter $(ARCH),ppc64le))
override ARCH = ppc64
endif
ifeq ($(ARCH),$(filter $(ARCH),armv7l))
override ARCH = arm
endif
LIBDIR := /lib
INCLUDEDIR := /usr/include