From 301d9f9b52b9b5dbc57151f680a64d1bf85e6d43 Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Wed, 26 Nov 2025 16:12:53 -0500 Subject: [PATCH] doc/next: document broken freebsd/riscv64 port Also update comment in cmd/dist's broken map to point to the top-level umbrella issue. For #76475. For #75005. Change-Id: I43b8384af4264dc5d72ceea8d05730b9db81123a Reviewed-on: https://go-review.googlesource.com/c/go/+/724860 Reviewed-by: Cherry Mui Reviewed-by: Dmitri Shuralyov Auto-Submit: Dmitri Shuralyov TryBot-Bypass: Dmitri Shuralyov --- doc/next/7-ports.md | 7 +++++++ src/cmd/dist/build.go | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/next/7-ports.md b/doc/next/7-ports.md index 04e1285f03..bc245c22d4 100644 --- a/doc/next/7-ports.md +++ b/doc/next/7-ports.md @@ -6,6 +6,13 @@ Go 1.26 is the last release that will run on macOS 12 Monterey. Go 1.27 will require macOS 13 Ventura or later. +### FreeBSD + + + +The freebsd/riscv64 port (`GOOS=freebsd GOARCH=riscv64`) has been marked broken. +See [issue 76475](/issue/76475) for details. + ### Windows diff --git a/src/cmd/dist/build.go b/src/cmd/dist/build.go index 2b382a1c02..e4250e12de 100644 --- a/src/cmd/dist/build.go +++ b/src/cmd/dist/build.go @@ -1822,7 +1822,7 @@ var cgoEnabled = map[string]bool{ // get filtered out of cgoEnabled for 'dist list'. // See go.dev/issue/56679. var broken = map[string]bool{ - "freebsd/riscv64": true, // Broken: go.dev/issue/73568. + "freebsd/riscv64": true, // Broken: go.dev/issue/76475. "linux/sparc64": true, // An incomplete port. See CL 132155. "openbsd/mips64": true, // Broken: go.dev/issue/58110. } -- 2.52.0