diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2016-12-28 14:44:53 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2016-12-28 14:44:53 +0800 |
commit | 815149dd6f64ecc749e5ea33c7f3b9110e056799 (patch) | |
tree | a358ca53cfccf4400e933f593895eccb5370959b | |
parent | 0c05b799332b65b1da5443c4f0b5915b3e30ef18 (diff) | |
download | dexon-mcl-815149dd6f64ecc749e5ea33c7f3b9110e056799.tar.gz dexon-mcl-815149dd6f64ecc749e5ea33c7f3b9110e056799.tar.zst dexon-mcl-815149dd6f64ecc749e5ea33c7f3b9110e056799.zip |
asm is not used
-rw-r--r-- | common.mk | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9,7 +9,7 @@ ifeq ($(ARCH),x86_64) INTEL=1 BIT=64 BIT_OPT=-m64 - LOW_ASM_SRC=src/asm/low_x86-64.asm + #LOW_ASM_SRC=src/asm/low_x86-64.asm ASM=nasm -felf64 endif ifeq ($(ARCH),x86) @@ -17,7 +17,7 @@ ifeq ($(ARCH),x86) INTEL=1 BIT=32 BIT_OPT=-m32 - LOW_ASM_SRC=src/asm/low_x86.asm + #LOW_ASM_SRC=src/asm/low_x86.asm endif ifeq ($(ARCH),armv7l) CPU=arm |