Coremark: update the compilation for 64bit

Signed-off-by: kongfl888 K <kongfl888@outlook.com>
This commit is contained in:
kongfl888 K 2020-08-24 04:01:10 +00:00
parent 9b6e434036
commit 642599e8c5
1 changed files with 4 additions and 2 deletions

View File

@ -34,10 +34,12 @@ define Package/coremark/description
Embedded Microprocessor Benchmark
endef
DIR_ARCH:=linux$(if $(CONFIG_ARCH_64BIT),64)
define Build/Compile
$(SED) 's|EXE = .exe|EXE =|' $(PKG_BUILD_DIR)/linux/core_portme.mak
$(SED) 's|EXE = .exe|EXE =|' $(PKG_BUILD_DIR)/$(DIR_ARCH)/core_portme.mak
mkdir $(PKG_BUILD_DIR)/$(ARCH)
$(CP) -r $(PKG_BUILD_DIR)/linux/* $(PKG_BUILD_DIR)/$(ARCH)
$(CP) -r $(PKG_BUILD_DIR)/$(DIR_ARCH)/* $(PKG_BUILD_DIR)/$(ARCH)
$(MAKE) -C $(PKG_BUILD_DIR) PORT_DIR=$(ARCH) $(MAKE_FLAGS) \
compile
endef