Coremark: use the general way to detect 64bit or not.

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 CN_SZTL
parent 15c39065cd
commit b440f7e55a
No known key found for this signature in database
GPG Key ID: 6850B6345C862176

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