Coremark: use the general way to detect 64bit or not. (#5330)

Signed-off-by: kongfl888 K <kongfl888@outlook.com>
This commit is contained in:
kongfl888 K 2020-08-20 03:00:27 -05:00 committed by GitHub
parent 46524d9336
commit 3e7c32a48d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,10 +37,9 @@ endef
DIR_ARCH:=linux
ifeq ($(ARCH),x86_64)
ifeq ($(CONFIG_ARCH_64BIT),y)
DIR_ARCH:=linux64
endif
ifeq ($(ARCH),aarch64)
else ifeq ($(CONFIG_64BIT),y)
DIR_ARCH:=linux64
endif