From a6cab0b3856b2ea81a3be7788b9a85be6f48b590 Mon Sep 17 00:00:00 2001 From: MITSUNARI Shigeo Date: Sun, 11 Aug 2019 10:09:44 +0900 Subject: [PATCH] common.mk detects armv6l --- common.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.mk b/common.mk index 5c749e1..8bbc032 100644 --- a/common.mk +++ b/common.mk @@ -42,7 +42,7 @@ ifeq ($(ARCH),x86) BIT_OPT=-m32 #LOW_ASM_SRC=src/asm/low_x86.asm endif -ifeq ($(ARCH),armv7l) +ifneq ($(findstring $(ARCH),armv7l/armv6l),) CPU=arm BIT=32 #LOW_ASM_SRC=src/asm/low_arm.s