mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-05-05 01:46:11 +02:00
Update mold to 2.41.0 Release notes: https://github.com/rui314/mold/releases/tag/v2.41.0 Signed-off-by: Carsten Schuette <schuettecarsten@googlemail.com> Link: https://github.com/openwrt/openwrt/pull/23129 Signed-off-by: Robert Marko <robimarko@gmail.com>
23 lines
550 B
Makefile
23 lines
550 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=mold
|
|
PKG_VERSION:=2.41.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL_FILE:=v$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://github.com/rui314/mold/archive/refs/tags
|
|
PKG_HASH:=0a61abac85d818437b425df856822e9d6e9982baeae5a93bcb02fe6c0060c61a
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
CMAKE_HOST_OPTIONS += \
|
|
-DMOLD_LTO=ON \
|
|
-DMOLD_USE_SYSTEM_MIMALLOC=OFF \
|
|
-DMOLD_USE_SYSTEM_TBB=OFF
|
|
|
|
$(eval $(call HostBuild))
|