-
Notifications
You must be signed in to change notification settings - Fork 17.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
x/debug/cmd/viewcore: does not build on aix-ppc64 #32839
Comments
@golang/osp-team, should we simply disable the |
In #31564 (comment), @Helflym said "my aim is to have all x/ packages working for 1.13." If that still holds and applies to x/debug, we can do the same as for x/net and make the builders require Go 1.13. That'll buy time, and if we want to disable it completely later, we can do that. |
Doing what I said above is trickier than I thought. The current version of The difference with x/net is that x/net is passing on master branch, but not Go 1.12 release branch. But x/debug is failing on all branches, including master. So for now our option is to disable it completely and update that as x/debug gains |
I've already created a PR in Note that if it's happening with AIX, it might happen to every new GOOS/GOARCH. I'm not sure having a subrepos package depending on a external package is a good idea. If we want all subrepos to be green, we should be able to submit patches and fixes directly inside Gerrit. Anyway, if you wish to disable it until either the PR is accepted or a better solution is created, go for it. |
The dependency comes from |
Change https://golang.org/cl/192322 mentions this issue: |
./cmd/viewcore depends on github.com/chzyer/readline, which doesn't build on aix yet. Updates golang/go#32839 Change-Id: I918667fcbc48a2ed5e8bb550be962932ccc8131d Reviewed-on: https://go-review.googlesource.com/c/debug/+/192322 Run-TryBot: Bryan C. Mills <bcmills@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
|
Change https://golang.org/cl/229877 mentions this issue: |
./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>
The
x/debug
build is consistently failing on theaix-ppc64
builder.It appears that
x/debug
depends ongithub.com/chzyer/readline
, but that package is missing anaix
implementation.CC @chzyer @Helflym
The text was updated successfully, but these errors were encountered: