diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2016-11-28 12:53:42 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2016-11-28 12:53:42 +0800 |
commit | 72bdd29d554053454d54dbfaf91646c17623290f (patch) | |
tree | d2ca4a27162fbbbc058473eab4784d1016f73630 | |
parent | e3432865e073052f21e022efa98d7f257cb1a243 (diff) | |
download | dexon-mcl-72bdd29d554053454d54dbfaf91646c17623290f.tar.gz dexon-mcl-72bdd29d554053454d54dbfaf91646c17623290f.tar.zst dexon-mcl-72bdd29d554053454d54dbfaf91646c17623290f.zip |
fix detection of armv7l
-rw-r--r-- | common.mk | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |