mirror of
https://github.com/openwrt/packages.git
synced 2025-12-27 03:24:57 +04:00
When there is an error building packages other than coremark and re-run with make -j1 V=s, the coremark package will report error. the root cause is the folder was already created in the first run, and not removed before the second run. To fix this, use 'mkdir -p' instead of 'mkdir'. Co-authored-by: Jonas Gorski <jonas.gorski@gmail.com> Signed-off-by: Rye Sears <xlighting@gmail.com>
85 lines
2.3 KiB
Makefile
85 lines
2.3 KiB
Makefile
#
|
|
# Copyright (C) 2018 Lim Guo Wei
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=coremark
|
|
PKG_SOURCE_DATE:=2023-01-25
|
|
PKG_SOURCE_VERSION:=d5fad6bd094899101a4e5fd53af7298160ced6ab
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_SOURCE_DATE).tar.gz
|
|
PKG_SOURCE_URL:=https://codeload.github.com/eembc/coremark/tar.gz/$(PKG_SOURCE_VERSION)?
|
|
PKG_HASH:=76f3b98fc940d277521023dc6e106551ef4a2180fa4c3da8cd5bf933aa494ef2
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_SOURCE_VERSION)
|
|
|
|
PKG_MAINTAINER:=Lim Guo Wei <limguowei@gmail.com> \
|
|
Aleksander Jan Bajkowski <olek2@wp.pl>
|
|
PKG_LICENSE:=Apache-2.0
|
|
PKG_LICENSE_FILES:=LICENSE.md
|
|
|
|
PKG_BUILD_FLAGS:=no-mips16 lto
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/coremark
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=CoreMark Embedded Microprocessor Benchmark
|
|
URL:=https://github.com/eembc/coremark
|
|
endef
|
|
|
|
define Package/coremark/description
|
|
Embedded Microprocessor Benchmark
|
|
endef
|
|
|
|
define Package/coremark/config
|
|
config COREMARK_OPTIMIZE_O3
|
|
bool "Use all optimizations (-O3)"
|
|
depends on PACKAGE_coremark
|
|
default y
|
|
help
|
|
This enables additional optmizations using the -O3 compilation flag.
|
|
|
|
config COREMARK_ENABLE_MULTITHREADING
|
|
bool "Enable multithreading support"
|
|
depends on PACKAGE_coremark
|
|
default n
|
|
help
|
|
This enables multithreading support
|
|
|
|
config COREMARK_NUMBER_OF_THREADS
|
|
int "Number of threads"
|
|
depends on COREMARK_ENABLE_MULTITHREADING
|
|
default 2
|
|
help
|
|
Number of threads to run in parallel
|
|
endef
|
|
|
|
ifeq ($(CONFIG_COREMARK_OPTIMIZE_O3),y)
|
|
TARGET_CFLAGS := $(filter-out -O%,$(TARGET_CFLAGS)) -O3
|
|
endif
|
|
|
|
ifeq ($(CONFIG_COREMARK_ENABLE_MULTITHREADING),y)
|
|
EXTRA_CFLAGS := -DMULTITHREAD=$(CONFIG_COREMARK_NUMBER_OF_THREADS) -DUSE_PTHREAD
|
|
endif
|
|
|
|
define Build/Compile
|
|
$(SED) 's|EXE = .exe|EXE =|' $(PKG_BUILD_DIR)/posix/core_portme.mak
|
|
mkdir -p $(PKG_BUILD_DIR)/$(ARCH)
|
|
$(CP) $(PKG_BUILD_DIR)/linux/* $(PKG_BUILD_DIR)/$(ARCH)/
|
|
$(MAKE) -C $(PKG_BUILD_DIR) PORT_DIR=$(ARCH) $(MAKE_FLAGS) \
|
|
PORT_CFLAGS="$(TARGET_CFLAGS)" XCFLAGS="$(EXTRA_CFLAGS)" compile
|
|
endef
|
|
|
|
define Package/coremark/install
|
|
$(INSTALL_DIR) $(1)/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/coremark $(1)/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,coremark))
|