git: 1ecf7c315719 - main - www/iridium: Fix build with rust 1.89.0
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 01 Sep 2025 08:25:57 UTC
The branch main has been updated by mikael:
URL: https://cgit.FreeBSD.org/ports/commit/?id=1ecf7c3157196660cd55f5f8aab964e28d7a0b65
commit 1ecf7c3157196660cd55f5f8aab964e28d7a0b65
Author: Mikael Urankar <mikael@FreeBSD.org>
AuthorDate: 2025-08-31 09:50:50 +0000
Commit: Mikael Urankar <mikael@FreeBSD.org>
CommitDate: 2025-09-01 08:24:02 +0000
www/iridium: Fix build with rust 1.89.0
error:
ld.lld: error: undefined symbol: __rustc::__rust_no_alloc_shim_is_unstable_v2
PR: 288923
Approved by: portmgr (build fix blanket)
---
www/iridium/files/patch-build_rust_allocator_lib.rs | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/www/iridium/files/patch-build_rust_allocator_lib.rs b/www/iridium/files/patch-build_rust_allocator_lib.rs
new file mode 100644
index 000000000000..a3a636371887
--- /dev/null
+++ b/www/iridium/files/patch-build_rust_allocator_lib.rs
@@ -0,0 +1,18 @@
+https://chromium.googlesource.com/chromium/src/+/8393b61ba876c8e1614275c97767f9b06b889f48
+https://chromium.googlesource.com/chromium/src/+/6aae0e2353c857d98980ff677bf304288d7c58de
+
+
+--- build/rust/allocator/lib.rs.orig 2025-06-18 14:17:42.000000000 +0200
++++ build/rust/allocator/lib.rs 2025-08-24 10:57:12.002293000 +0200
+@@ -89,9 +89,8 @@ mod both_allocators {
+ /// As part of rustc's contract for using `#[global_allocator]` without
+ /// rustc-generated shims we must define this symbol, since we are opting in
+ /// to unstable functionality. See https://github.com/rust-lang/rust/issues/123015
+- #[no_mangle]
+- #[linkage = "weak"]
+- static __rust_no_alloc_shim_is_unstable: u8 = 0;
++ #[rustc_std_internal_symbol]
++ fn __rust_no_alloc_shim_is_unstable_v2() {}
+
+ // Mangle the symbol name as rustc expects.
+ #[rustc_std_internal_symbol]