Skip to content

Commit e0ac75d

Browse files
committed
cmd/dist: disable cgo for darwin/386
Fixes #31751 Change-Id: Id002f14557a34accc3597cb1b9a42e838a027da4 Reviewed-on: https://go-review.googlesource.com/c/go/+/174497 Reviewed-by: Keith Randall <[email protected]> Run-TryBot: Brad Fitzpatrick <[email protected]> TryBot-Result: Gobot Gobot <[email protected]>
1 parent 4ad1355 commit e0ac75d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cmd/dist/build.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1478,7 +1478,7 @@ func checkNotStale(goBinary string, targets ...string) {
14781478
// by 'go tool dist list'.
14791479
var cgoEnabled = map[string]bool{
14801480
"aix/ppc64": true,
1481-
"darwin/386": true,
1481+
"darwin/386": false, // Issue 31751
14821482
"darwin/amd64": true,
14831483
"darwin/arm": true,
14841484
"darwin/arm64": true,

0 commit comments

Comments
 (0)