aboutsummaryrefslogtreecommitdiff
path: root/src/runtime
diff options
context:
space:
mode:
authorMichael Matloob <matloob@golang.org>2026-04-01 12:47:25 -0400
committerMichael Matloob <matloob@google.com>2026-04-01 16:13:30 -0700
commit9301a3eab246d3ddb49415cfd892c00382189264 (patch)
tree162c61d0165eec99b21f6faf1ee945bdd9661bc9 /src/runtime
parent0dcd7ab1b9658183d52ccadf9135834fdd57e2ba (diff)
downloadgo-9301a3eab246d3ddb49415cfd892c00382189264.tar.xz
runtime: rename _mkmalloc's module to avoid GOROOT conflict
Often we want to run _mkmalloc using a different toolchain. The previous module path runtime/_mkmalloc would produce an ambiguous import path error because the directory runtime/_mkmalloc exists in a Go 1.26+ toolchain. Rename the module to avoid the conflict. Change-Id: Id73a3ca102081d8b51da58879aee851b6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/761880 Reviewed-by: Michael Matloob <matloob@google.com> Auto-Submit: Michael Matloob <matloob@google.com> Reviewed-by: Michael Pratt <mpratt@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Diffstat (limited to 'src/runtime')
-rw-r--r--src/runtime/_mkmalloc/go.mod2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/_mkmalloc/go.mod b/src/runtime/_mkmalloc/go.mod
index 623c341769..61b1c55052 100644
--- a/src/runtime/_mkmalloc/go.mod
+++ b/src/runtime/_mkmalloc/go.mod
@@ -1,4 +1,4 @@
-module runtime/_mkmalloc
+module _mkmalloc
go 1.24