commit: ad926f186c5df33c0d33838808901bb2da2b2765 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue May 6 07:41:46 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue May 6 07:43:27 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad926f18
sys-devel/mold: drop 2.1.0, 2.35.1, 2.36.0 This drops ppc64 but it was stuck on an old version anyway. We can bring it back later once that is sorted. Bug: https://bugs.gentoo.org/899974 Signed-off-by: Sam James <sam <AT> gentoo.org> sys-devel/mold/Manifest | 3 - .../mold/files/mold-2.35.1-system-mimalloc.patch | 64 ------------ sys-devel/mold/mold-2.1.0.ebuild | 89 ----------------- sys-devel/mold/mold-2.35.1.ebuild | 105 -------------------- sys-devel/mold/mold-2.36.0.ebuild | 109 --------------------- 5 files changed, 370 deletions(-) diff --git a/sys-devel/mold/Manifest b/sys-devel/mold/Manifest index c9bba450242f..023794eed3dd 100644 --- a/sys-devel/mold/Manifest +++ b/sys-devel/mold/Manifest @@ -1,6 +1,3 @@ -DIST mold-2.1.0.tar.gz 9278811 BLAKE2B b31e13f92177553adf5069cf35c8c75c7bc28f0af4d1726cdc0c6abc1c9d3baaa5be512c3a8fb9bc3c3110096a79e1c6751c701171769595a2234fc1fa8c441a SHA512 f1c98d349b35b4042109d71f7db6eb8d7d089dc3241735bbd7b5402d513dcc85ca17904828779e5fc8234650fa9fb97f47c3a2f3e89cc2fb3cb9e9110439e5a2 -DIST mold-2.35.1.tar.gz 10094602 BLAKE2B 4943588d116a4631ad4404a4f2d92c4f9745546ec1ab7054df2af766f270c634c571f90d5e224f5441e48a3b310819f6993e56d5574c60032dd547d68d08fc64 SHA512 30d9cadfe57288e80ffcaddf1bf7df7b3bff75d337ea2b612bdffa3de3f7bd908b02d24c1f848d4ad0e82f72cd0e04c33ddd01d23c549d81aac5af58e63dbab4 -DIST mold-2.36.0.tar.gz 10094759 BLAKE2B d86e6c7b71bbda0f02fbf2215f15a0e4c15cbb0ba32d4c5d478a6e07d4ed4fb42891610cfdc24ea67b6683f044a9c122db8534580fe12f6164b0db2681178825 SHA512 985ca22400b2d957b4ea8d35d6716cc6f13d1abe9c9e1eed461efda6f2612a5fbfa707aff879c616c756111fea751a335ad3a3fc224c7573855e7b2795596164 DIST mold-2.37.1.tar.gz 10169802 BLAKE2B 702f5678f070b66cd3e6a2df000aad73ce6248d0bb025bfbfaa5de76be71c2ea265c45c5e5086426c79354f95c9326e0c33b0e78a144881a22456fbb495e46b1 SHA512 641c6668ee31368409d80ea01c0d84a58eac827eedc110495ca075bfce22081c906308d027e4723750995fc0d8b6bba8be3c3472c20f765ef45d14e1c4e36cd4 DIST mold-2.38.1.tar.gz 10221650 BLAKE2B 214a5c5f12ce3e97152b4c1957ce6d045a292d1a39fde3da6197d15ae9b57fd4ca44fabd4bc0462dad49b0ed4c528ebcdb41f1e7e29c67e5e53d20a491c76017 SHA512 608c2cdb20ae671f540caeda2d0406154b03b0c352cb4cf98ea65c888691a1ac96b0a0ac26fc947fd1a3df2ed2809096e8ca0649deeac7b811bf2902a49cf66e DIST mold-2.39.0.tar.gz 10222962 BLAKE2B 46ca128aab4c5aa8a299cea3330429d820fe9adc4a03cf6b6542a85a0dcd91da5d5cdedbbc27c9ee4f76253e5ab391edf9bfc7eeec39c8020be23f72a6c0621c SHA512 6c4e910f475c6cf8be67de52266a09ce69ed707f275b44738f6ebbd470c58627c1c5519e3bcffb96315c89fa49f4267258274f3a781c7d56fb25e1ebdff4179d diff --git a/sys-devel/mold/files/mold-2.35.1-system-mimalloc.patch b/sys-devel/mold/files/mold-2.35.1-system-mimalloc.patch deleted file mode 100644 index c0abe4b5fd68..000000000000 --- a/sys-devel/mold/files/mold-2.35.1-system-mimalloc.patch +++ /dev/null @@ -1,64 +0,0 @@ -https://github.com/rui314/mold/commit/9c9145eb6e5381b69f47bdfb11eeffb7b9febb8b -https://github.com/rui314/mold/commit/ac9568f17b9054e92fed95a862ec83701336cd37 - -From 9c9145eb6e5381b69f47bdfb11eeffb7b9febb8b Mon Sep 17 00:00:00 2001 -From: Christoph Erhardt <[email protected]> -Date: Thu, 19 Dec 2024 21:55:41 +0100 -Subject: [PATCH] Add missing `#include "common.h"` - -This allows the compiler to make sure that the implementation of -`set_mimalloc_options()` matches its declaration. - -More importantly, it indirectly pulls in `config.h`, where the macros -`MOLD_USE_SYSTEM_MIMALLOC` and `MOLD_USE_MIMALLOC` are conditionally -defined. Without these, the build configuration is ignored. ---- - lib/mimalloc.cc | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/lib/mimalloc.cc b/lib/mimalloc.cc -index 637d5e8ce7..823b91b8e9 100644 ---- a/lib/mimalloc.cc -+++ b/lib/mimalloc.cc -@@ -1,3 +1,5 @@ -+#include "common.h" -+ - // Including mimalloc-new-delete.h overrides new/delete operators. - // We need it only when we are using mimalloc as a dynamic library. - #if MOLD_USE_SYSTEM_MIMALLOC - -From ac9568f17b9054e92fed95a862ec83701336cd37 Mon Sep 17 00:00:00 2001 -From: Christoph Erhardt <[email protected]> -Date: Thu, 19 Dec 2024 23:40:12 +0100 -Subject: [PATCH] Disable mimalloc when a sanitizer is used - -Combining mimalloc and AddressSanitizer triggers a segmentation fault in -many tests. - -Combining mimalloc and ThreadSanitizer leads to duplicate symbols for -the `new` and `delete` -operators, causing the build to fail. -Example message from a failed GitHub Actions build: -``` -mold: error: duplicate symbol: -third-party/mimalloc/libmimalloc-debug.a(alloc.c.o): -/usr/lib/llvm-18/lib/clang/18/lib/linux/libclang_rt.tsan_cxx-x86_64.a(tsan_new_delete.cpp.o): -operator delete(void*, std::align_val_t) -``` ---- - CMakeLists.txt | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index d8643961d9..c451ea952a 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -180,7 +180,7 @@ endif() - # be stable on 32-bit targets. - cmake_dependent_option( - MOLD_USE_MIMALLOC "Use mimalloc" ON -- "CMAKE_SIZEOF_VOID_P EQUAL 8; NOT APPLE; NOT ANDROID; NOT OPENBSD" OFF) -+ "CMAKE_SIZEOF_VOID_P EQUAL 8; NOT APPLE; NOT ANDROID; NOT OPENBSD; NOT MOLD_USE_ASAN; NOT MOLD_USE_TSAN" OFF) - - cmake_dependent_option( - MOLD_USE_SYSTEM_MIMALLOC "Use system or vendored mimalloc" OFF diff --git a/sys-devel/mold/mold-2.1.0.ebuild b/sys-devel/mold/mold-2.1.0.ebuild deleted file mode 100644 index 4140d61806dd..000000000000 --- a/sys-devel/mold/mold-2.1.0.ebuild +++ /dev/null @@ -1,89 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake toolchain-funcs - -DESCRIPTION="A Modern Linker" -HOMEPAGE="https://github.com/rui314/mold" -if [[ ${PV} == 9999 ]] ; then - EGIT_REPO_URI="https://github.com/rui314/mold.git" - inherit git-r3 -else - SRC_URI="https://github.com/rui314/mold/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86" -fi - -# mold (MIT) -# - xxhash (BSD-2) -LICENSE="MIT BSD-2" -SLOT="0" - -RDEPEND=" - app-arch/zstd:= - >=dev-cpp/tbb-2021.7.0-r1:= - sys-libs/zlib - !kernel_Darwin? ( - >=dev-libs/mimalloc-2:= - dev-libs/openssl:= - ) -" -DEPEND="${RDEPEND}" - -pkg_pretend() { - # Requires a c++20 compiler, see #831473 - if [[ ${MERGE_TYPE} != binary ]]; then - if tc-is-gcc && [[ $(gcc-major-version) -lt 10 ]]; then - die "${PN} needs at least gcc 10" - elif tc-is-clang && [[ $(clang-major-version) -lt 12 ]]; then - die "${PN} needs at least clang 12" - fi - fi -} - -src_prepare() { - cmake_src_prepare - - # Needs unpackaged dwarfdump - rm test/elf/{{dead,compress}-debug-sections,compressed-debug-info}.sh || die - - # Heavy tests, need qemu - rm test/elf/gdb-index-{compress-output,dwarf{2,3,4,5}}.sh || die - rm test/elf/lto-{archive,dso,gcc,llvm,version-script}.sh || die - - # Sandbox sadness - rm test/elf/run.sh || die - sed -i 's|`pwd`/mold-wrapper.so|"& ${LD_PRELOAD}"|' \ - test/elf/mold-wrapper{,2}.sh || die - - # static-pie tests require glibc built with static-pie support - if ! has_version -d 'sys-libs/glibc[static-pie(+)]'; then - rm test/elf/{,ifunc-}static-pie.sh || die - fi -} - -src_configure() { - local mycmakeargs=( - -DMOLD_ENABLE_QEMU_TESTS=OFF - -DMOLD_LTO=OFF # Should be up to the user to decide this with CXXFLAGS. - -DMOLD_USE_SYSTEM_MIMALLOC=ON - -DMOLD_USE_SYSTEM_TBB=ON - ) - cmake_src_configure -} - -src_install() { - dobin "${BUILD_DIR}"/${PN} - - # https://bugs.gentoo.org/872773 - insinto /usr/$(get_libdir)/mold - doins "${BUILD_DIR}"/${PN}-wrapper.so - - dodoc docs/{design,execstack}.md - doman docs/${PN}.1 - - dosym ${PN} /usr/bin/ld.${PN} - dosym ${PN} /usr/bin/ld64.${PN} - dosym ../../../usr/bin/${PN} /usr/libexec/${PN}/ld -} diff --git a/sys-devel/mold/mold-2.35.1.ebuild b/sys-devel/mold/mold-2.35.1.ebuild deleted file mode 100644 index 195e12df9bad..000000000000 --- a/sys-devel/mold/mold-2.35.1.ebuild +++ /dev/null @@ -1,105 +0,0 @@ -# Copyright 2021-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake flag-o-matic toolchain-funcs - -DESCRIPTION="A Modern Linker" -HOMEPAGE="https://github.com/rui314/mold" -if [[ ${PV} == 9999 ]] ; then - EGIT_REPO_URI="https://github.com/rui314/mold.git" - inherit git-r3 -else - SRC_URI="https://github.com/rui314/mold/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - # -alpha: https://github.com/rui314/mold/commit/3711ddb95e23c12991f6b8c7bfeba4f1421d19d4 - KEYWORDS="-alpha amd64 ~arm ~arm64 ~loong ~ppc ~riscv ~sparc ~x86" -fi - -# mold (MIT) -# - xxhash (BSD-2) -# - siphash ( MIT CC0-1.0 ) -LICENSE="MIT BSD-2 CC0-1.0" -SLOT="0" -IUSE="debug" - -RDEPEND=" - app-arch/zstd:= - >=dev-cpp/tbb-2021.7.0-r1:= - dev-libs/blake3:= - sys-libs/zlib - !kernel_Darwin? ( - >=dev-libs/mimalloc-2:= - ) -" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${P}-system-mimalloc.patch -) - -pkg_pretend() { - # Requires a c++20 compiler, see #831473 - if [[ ${MERGE_TYPE} != binary ]]; then - if tc-is-gcc && [[ $(gcc-major-version) -lt 10 ]]; then - die "${PN} needs at least gcc 10" - elif tc-is-clang && [[ $(clang-major-version) -lt 12 ]]; then - die "${PN} needs at least clang 12" - fi - fi -} - -src_prepare() { - cmake_src_prepare - - # Needs unpackaged dwarfdump - rm test/{{dead,compress}-debug-sections,compressed-debug-info}.sh || die - - # Heavy tests, need qemu - rm test/gdb-index-{compress-output,dwarf{2,3,4,5}}.sh || die - rm test/lto-{archive,dso,gcc,llvm,version-script}.sh || die - - # Sandbox sadness - rm test/run.sh || die - sed -i 's|`pwd`/mold-wrapper.so|"& ${LD_PRELOAD}"|' \ - test/mold-wrapper{,2}.sh || die - - # static-pie tests require glibc built with static-pie support - if ! has_version -d 'sys-libs/glibc[static-pie(+)]'; then - rm test/{,ifunc-}static-pie.sh || die - fi -} - -src_configure() { - use debug || append-cppflags "-DNDEBUG" - - local mycmakeargs=( - -DMOLD_ENABLE_QEMU_TESTS=OFF - -DMOLD_LTO=OFF # Should be up to the user to decide this with CXXFLAGS. - -DMOLD_USE_MIMALLOC=$(usex !kernel_Darwin) - -DMOLD_USE_SYSTEM_MIMALLOC=ON - -DMOLD_USE_SYSTEM_TBB=ON - ) - cmake_src_configure -} - -src_test() { - export TEST_CC="$(tc-getCC)" TEST_GCC="$(tc-getCC)" \ - TEST_CXX="$(tc-getCXX)" TEST_GXX="$(tc-getCXX)" - cmake_src_test -} - -src_install() { - dobin "${BUILD_DIR}"/${PN} - - # https://bugs.gentoo.org/872773 - insinto /usr/$(get_libdir)/mold - doins "${BUILD_DIR}"/${PN}-wrapper.so - - dodoc docs/{design,execstack}.md - doman docs/${PN}.1 - - dosym ${PN} /usr/bin/ld.${PN} - dosym ${PN} /usr/bin/ld64.${PN} - dosym -r /usr/bin/${PN} /usr/libexec/${PN}/ld -} diff --git a/sys-devel/mold/mold-2.36.0.ebuild b/sys-devel/mold/mold-2.36.0.ebuild deleted file mode 100644 index 5097ae6cfba9..000000000000 --- a/sys-devel/mold/mold-2.36.0.ebuild +++ /dev/null @@ -1,109 +0,0 @@ -# Copyright 2021-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake flag-o-matic toolchain-funcs - -DESCRIPTION="A Modern Linker" -HOMEPAGE="https://github.com/rui314/mold" -if [[ ${PV} == 9999 ]] ; then - EGIT_REPO_URI="https://github.com/rui314/mold.git" - inherit git-r3 -else - SRC_URI="https://github.com/rui314/mold/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - # -alpha: https://github.com/rui314/mold/commit/3711ddb95e23c12991f6b8c7bfeba4f1421d19d4 - KEYWORDS="-alpha amd64 ~arm ~arm64 ~loong ~ppc ~riscv ~sparc ~x86" -fi - -# mold (MIT) -# - xxhash (BSD-2) -# - siphash ( MIT CC0-1.0 ) -LICENSE="MIT BSD-2 CC0-1.0" -SLOT="0" -IUSE="debug test" -RESTRICT="!test? ( test )" - -RDEPEND=" - app-arch/zstd:= - >=dev-cpp/tbb-2021.7.0-r1:= - dev-libs/blake3:= - sys-libs/zlib - !kernel_Darwin? ( - >=dev-libs/mimalloc-2:= - ) -" -DEPEND="${RDEPEND}" - -pkg_pretend() { - # Requires a c++20 compiler, see #831473 - if [[ ${MERGE_TYPE} != binary ]]; then - if tc-is-gcc && [[ $(gcc-major-version) -lt 10 ]]; then - die "${PN} needs at least gcc 10" - elif tc-is-clang && [[ $(clang-major-version) -lt 12 ]]; then - die "${PN} needs at least clang 12" - fi - fi -} - -src_prepare() { - cmake_src_prepare - - # Needs unpackaged dwarfdump - rm test/{{dead,compress}-debug-sections,compressed-debug-info}.sh || die - - # Heavy tests, need qemu - rm test/gdb-index-{compress-output,dwarf{2,3,4,5}}.sh || die - rm test/lto-{archive,dso,gcc,llvm,version-script}.sh || die - - # Sandbox sadness - rm test/run.sh || die - sed -i 's|`pwd`/mold-wrapper.so|"& ${LD_PRELOAD}"|' \ - test/mold-wrapper{,2}.sh || die - - # static-pie tests require glibc built with static-pie support - if ! has_version -d 'sys-libs/glibc[static-pie(+)]'; then - rm test/{,ifunc-}static-pie.sh || die - fi -} - -src_configure() { - use debug || append-cppflags "-DNDEBUG" - - local mycmakeargs=( - -DBUILD_TESTING=$(usex test) - -DMOLD_LTO=OFF # Should be up to the user to decide this with CXXFLAGS. - -DMOLD_USE_MIMALLOC=$(usex !kernel_Darwin) - -DMOLD_USE_SYSTEM_MIMALLOC=ON - -DMOLD_USE_SYSTEM_TBB=ON - ) - - if use test ; then - mycmakeargs+=( - -DMOLD_ENABLE_QEMU_TESTS=OFF - ) - fi - - cmake_src_configure -} - -src_test() { - export TEST_CC="$(tc-getCC)" TEST_GCC="$(tc-getCC)" \ - TEST_CXX="$(tc-getCXX)" TEST_GXX="$(tc-getCXX)" - cmake_src_test -} - -src_install() { - dobin "${BUILD_DIR}"/${PN} - - # https://bugs.gentoo.org/872773 - insinto /usr/$(get_libdir)/mold - doins "${BUILD_DIR}"/${PN}-wrapper.so - - dodoc docs/{design,execstack}.md - doman docs/${PN}.1 - - dosym ${PN} /usr/bin/ld.${PN} - dosym ${PN} /usr/bin/ld64.${PN} - dosym -r /usr/bin/${PN} /usr/libexec/${PN}/ld -}
