build-cran-binaries/local/patches/registry.json
pat-s d374dc2bc0
fix(patches): widen RcppParallel system-tbb scope to all oneTBB-2021 platforms
#135 scoped the system-tbb patch to alpine + ubuntu-2604. An audit of every
build-env image showed RcppParallel's bundled Intel TBB build fails on all
platforms with a modern toolchain, and the system oneTBB is usable wherever the
image ships oneTBB 2021+.

Widen the scope to alpine, all ubuntu (jammy/noble/resolute -- the family token
now covers 2204/2404/2604), and redhat-10. el8 (TBB 2018) and el9 (TBB 2020.3)
ship pre-oneTBB TBB and keep the bundled build, so they stay out of scope.

Requires the matching build-env-images env (TBB_INC/TBB_LIB), extended to all
ubuntu and el10 there.

Verified in the build-env images: RcppParallel + rstan build and link on alpine,
redhat-10, ubuntu noble and ubuntu resolute; RcppParallel builds on ubuntu jammy.
2026-07-20 17:37:42 +00:00

42 lines
2.1 KiB
JSON

[
{
"package": "RcppParallel",
"versions": "*",
"platforms": [
"alpine",
"ubuntu",
"redhat-10"
],
"env": {},
"configure_args": [],
"makevars": {},
"patch": "RcppParallel/system-tbb.patch",
"reason": "RcppParallel bundles an old Intel TBB whose build fails on musl and modern toolchains (g++ 14/15); link the system oneTBB (2021+) shipped in the build-env images instead, keeping the TBB backend so dependents (rstan, ...) link TBB. Scoped to platforms with oneTBB 2021+ (alpine, all ubuntu, el10); el8/el9 ship pre-oneTBB TBB and are left on the bundled build."
},
{
"package": "fs",
"versions": "*",
"platforms": [
"*"
],
"env": {},
"configure_args": [],
"makevars": {},
"patch": "fs/force-vendored-libuv.patch",
"reason": "fs 2.x configure links system libuv whenever pkg-config finds libuv-devel (installed as a build-time sysreq), producing an fs.so with NEEDED libuv.so.1. That binary fails to dyn.load on consumer machines lacking runtime libuv, because install.packages/renv do not install SystemRequirements (only pak does, and only in the build container). The patch short-circuits configure to copy src/Makevars.vendor and build the bundled static libuv (needs cmake) so the binary is self-contained on every platform. An env/pkg-config override was tried first but the rebuilt binary still linked libuv.so.1, so a source patch is used instead."
},
{
"package": "rstan",
"versions": "*",
"platforms": [
"*"
],
"env": {},
"configure_args": [],
"makevars": {
"CPPFLAGS": "-DTBB_INTERFACE_NEW -I/usr/local/include"
},
"patch": null,
"reason": "StanHeaders' init_threadpool_tbb.hpp unconditionally includes the legacy <tbb/tbb_stddef.h> (removed in oneTBB 2021+) for version detection, breaking compilation of Module.cpp against the bundled oneTBB. Pre-defining TBB_INTERFACE_NEW skips that include and selects the modern tbb/global_control.h + tbb/task_arena.h path that the bundled TBB provides (-I/usr/local/include preserves the default CPPFLAGS the override replaces)"
}
]