From: Andre Heider Date: Fri, 27 Jan 2023 15:35:46 +0000 (+0100) Subject: build: add support to use the mold linker for packages X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fhauke.git;a=commitdiff_plain;h=32ed9764462ae04fad5809f857450d4f606ac4c0 build: add support to use the mold linker for packages If CONFIG_USE_MOLD is set, all target packages will use the mold linker. Except the ones which opted-out via setting PKG_BUILD_FLAGS:=no-mold. Signed-off-by: Andre Heider --- diff --git a/include/package.mk b/include/package.mk index 1762080b9b..61a26f0c43 100644 --- a/include/package.mk +++ b/include/package.mk @@ -55,6 +55,11 @@ ifeq ($(call pkg_build_flag,lto,$(if $(CONFIG_USE_LTO),1,0)),1) TARGET_CXXFLAGS+= -flto=auto -fno-fat-lto-objects TARGET_LDFLAGS+= -flto=auto -fuse-linker-plugin endif +ifdef CONFIG_USE_MOLD + ifeq ($(call pkg_build_flag,mold,1),1) + TARGET_LINKER:=mold + endif +endif include $(INCLUDE_DIR)/hardening.mk include $(INCLUDE_DIR)/prereq.mk