aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <herumi@nifty.com>2016-11-28 12:53:42 +0800
committerMITSUNARI Shigeo <herumi@nifty.com>2016-11-28 12:53:42 +0800
commit72bdd29d554053454d54dbfaf91646c17623290f (patch)
treed2ca4a27162fbbbc058473eab4784d1016f73630
parente3432865e073052f21e022efa98d7f257cb1a243 (diff)
downloaddexon-mcl-72bdd29d554053454d54dbfaf91646c17623290f.tar.gz
dexon-mcl-72bdd29d554053454d54dbfaf91646c17623290f.tar.zst
dexon-mcl-72bdd29d554053454d54dbfaf91646c17623290f.zip
fix detection of armv7l
-rw-r--r--common.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/common.mk b/common.mk
index 0e711a7..19ec8c6 100644
--- a/common.mk
+++ b/common.mk
@@ -19,10 +19,10 @@ ifeq ($(ARCH),x86)
BIT_OPT=-m32
LOW_ASM_SRC=src/asm/low_x86.asm
endif
-ifeq ($(ARCH),armv71)
- CPU=armv71
+ifeq ($(ARCH),armv7l)
+ CPU=arm
BIT=32
- LOW_ASM_SRC=src/asm/low_arm.s
+ #LOW_ASM_SRC=src/asm/low_arm.s
endif
ifeq ($(ARCH),aarch64)
CPU=aarch64