From: Cherry Mui Date: Fri, 13 Jun 2025 19:07:24 +0000 (-0400) Subject: cmd/link: add one more linkname to the blocklist X-Git-Tag: go1.25rc2~2^2~31 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=47b941f445;p=gostls13.git cmd/link: add one more linkname to the blocklist I missed one in the previous CL. Change-Id: I448a871523d7fb8f429b4482839d7f101ea003b6 Reviewed-on: https://go-review.googlesource.com/c/go/+/681497 Reviewed-by: David Chase LUCI-TryBot-Result: Go LUCI --- diff --git a/src/cmd/link/internal/loader/loader.go b/src/cmd/link/internal/loader/loader.go index 2bf52d221b..d439092737 100644 --- a/src/cmd/link/internal/loader/loader.go +++ b/src/cmd/link/internal/loader/loader.go @@ -2400,6 +2400,7 @@ var blockedLinknames = map[string][]string{ "runtime.mapdelete_faststr": {"runtime"}, // New internal linknames in Go 1.25 // Pushed from runtime + "internal/cpu.riscvHWProbe": {"internal/cpu"}, "internal/runtime/cgroup.throw": {"internal/runtime/cgroup"}, "internal/runtime/maps.typeString": {"internal/runtime/maps"}, "internal/synctest.IsInBubble": {"internal/synctest"},