Skip to content

Commit 21d9a9d

Browse files
Richard Millerhyangah
authored andcommitted
cmd/viewcore: skip build on plan9
./cmd/viewcore depends on github.com/chzyer/readline, which doesn't build on Plan 9. Updates golang/go#32839 Change-Id: I5e0638a65914dcad7e7c9383df77e24a6b616a89 Reviewed-on: https://go-review.googlesource.com/c/debug/+/229877 Reviewed-by: Hyang-Ah Hana Kim <[email protected]>
1 parent 49413fe commit 21d9a9d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cmd/viewcore/html.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
// +build !aix
5+
// +build !aix,!plan9
66
// (https://golang.org/issue/32839)
77

88
package main

cmd/viewcore/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
// Skip aix for now: github.com/chzyer/readline doesn't support it.
5+
// Skip aix and plan9 for now: github.com/chzyer/readline doesn't support them.
66
// (https://golang.org/issue/32839)
77
//
8-
// +build !aix
8+
// +build !aix,!plan9
99

1010
// The viewcore tool is a command-line tool for exploring the state of a Go process
1111
// that has dumped core.

0 commit comments

Comments
 (0)