Browse Source

Coremark: update the compilation for 64bit

Signed-off-by: kongfl888 K <kongfl888@outlook.com>
lilik-openwrt-22.03
kongfl888 K 4 years ago
parent
commit
642599e8c5
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      utils/coremark/Makefile

+ 4
- 2
utils/coremark/Makefile 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


Loading…
Cancel
Save