On 3/6/26 03:24, Xin LI wrote:
The branch main has been updated by delphij:
URL:
https://cgit.FreeBSD.org/src/commit/?id=8dd28e13e41b6200e58d6e99981ff8323cff3711
commit 8dd28e13e41b6200e58d6e99981ff8323cff3711
Author: Xin LI <[email protected]>
AuthorDate: 2026-03-06 08:22:06 +0000
Commit: Xin LI <[email protected]>
CommitDate: 2026-03-06 08:22:06 +0000
libc/quad: fix missing closing #endif in Symbol.map
Without this lib32 libc.so.7 would be missing critical symbols,
including malloc / free and all syscall wrappers.
Oof, my bad, thanks for fixing.
---
lib/libc/quad/Symbol.map | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/libc/quad/Symbol.map b/lib/libc/quad/Symbol.map
index c28f9a180704..251814cb238f 100644
--- a/lib/libc/quad/Symbol.map
+++ b/lib/libc/quad/Symbol.map
@@ -50,4 +50,5 @@ FBSD_1.0 {
__udivdi3;
__umoddi3;
__xordi3;
+#endif
};
--
John Baldwin