Skip to content

Commit

Permalink
cmd/viewcore: skip build on plan9
Browse files Browse the repository at this point in the history
./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 <hyangah@gmail.com>
  • Loading branch information
Richard Miller authored and hyangah committed Apr 24, 2020
1 parent 49413fe commit 21d9a9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/viewcore/html.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

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

package main
Expand Down
4 changes: 2 additions & 2 deletions cmd/viewcore/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

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

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

0 comments on commit 21d9a9d

Please sign in to comment.