mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-12-15 16:49:53 +00:00
24 lines
1.0 KiB
Makefile
24 lines
1.0 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (C) 2022-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="mold"
|
|
PKG_VERSION="2.30.0"
|
|
PKG_SHA256="6e5178ccafe828fdb4ba0dd841d083ff6004d3cb41e56485143eb64c716345fd"
|
|
PKG_LICENSE="MIT"
|
|
PKG_SITE="https://github.com/rui314/mold"
|
|
PKG_URL="https://github.com/rui314/mold/archive/refs/tags/v${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_HOST="cmake:host zlib:host zstd:host openssl:host tbb:host mimalloc:host"
|
|
PKG_LONGDESC="mold is a faster drop-in replacement for existing Unix linkers"
|
|
|
|
PKG_CMAKE_OPTS_HOST="-DCMAKE_INSTALL_LIBDIR="${TOOLCHAIN}/${TARGET_NAME}/lib"
|
|
-DCMAKE_INSTALL_BINDIR="${TARGET_NAME}/bin" \
|
|
-DCMAKE_INSTALL_LIBEXECDIR="${TARGET_NAME}" \
|
|
-DMOLD_LTO=ON \
|
|
-DMOLD_MOSTLY_STATIC=ON \
|
|
-DMOLD_USE_SYSTEM_MIMALLOC=ON \
|
|
-DMOLD_USE_SYSTEM_TBB=ON"
|
|
|
|
post_makeinstall_host() {
|
|
ln -sf ${TOOLCHAIN}/${TARGET_NAME}/bin/mold ${TARGET_PREFIX}ld.mold
|
|
}
|