From 3ce198f1033ad6463cf3f176f813f18c01bd9829 Mon Sep 17 00:00:00 2001 From: xgopilot Date: Tue, 14 Oct 2025 08:29:26 +0000 Subject: [PATCH] fix: remove llgo:skipall directive from maphash overlay The llgo:skipall directive was preventing fallback to the standard library, causing undefined symbol errors for functions like WriteString, MakeSeed, etc. The overlay now only defines the two linkname functions, allowing typepatch to handle the rest. Generated with [codeagent](https://github.com/qbox/codeagent) Co-authored-by: luoliwoshang --- runtime/internal/lib/hash/maphash/maphash.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/runtime/internal/lib/hash/maphash/maphash.go b/runtime/internal/lib/hash/maphash/maphash.go index 9e00aca6..a530004c 100644 --- a/runtime/internal/lib/hash/maphash/maphash.go +++ b/runtime/internal/lib/hash/maphash/maphash.go @@ -18,9 +18,6 @@ package maphash import "unsafe" -// llgo:skipall -type _maphash struct{} - //go:linkname runtime_rand github.com/goplus/llgo/runtime/internal/runtime.fastrand64 func runtime_rand() uint64