From: kongfl888 K Date: Mon, 24 Aug 2020 04:01:10 +0000 (+0000) Subject: Coremark: update the compilation for 64bit X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=642599e8c545088ae4f01474c1053cb3e0bf2c94;p=openwrt-packages.git Coremark: update the compilation for 64bit Signed-off-by: kongfl888 K --- diff --git a/utils/coremark/Makefile b/utils/coremark/Makefile index b37895c64..81f0d101e 100644 --- a/utils/coremark/Makefile +++ b/utils/coremark/Makefile @@ -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