delve icon indicating copy to clipboard operation
delve copied to clipboard

s390x support?

Open tamalsaha opened this issue 2 years ago • 1 comments

Please answer the following before submitting your issue:

Note: Please include any substantial examples (debug session output, stacktraces, etc) as linked gists.

  1. What version of Delve are you using (dlv version)?
  2. What version of Go are you using? (go version)?
  3. What operating system and processor architecture are you using?
  4. What did you do?
  5. What did you expect to see?
  6. What did you see instead?

tamalsaha avatar Jan 27 '22 08:01 tamalsaha

Hi Team, Tired to install the delveon s390x linux machine and it's failing with below error.

  1. What version of Delve are you using (dlv version)?- latest
  2. What version of Go are you using? (go version)?- 1.18.3
  3. What operating system and processor architecture are you using?- linux/s390x
  4. What did you do?- Tried to instal delve package
[root@80ef23abac1e /]# curl -fsSLo go.tar.gz "https://go.dev/dl/go1.18.3.linux-s390x.tar.gz"
[root@80ef23abac1e /]# tar -xzf go.tar.gz -C /usr/local/
[root@80ef23abac1e /]# export GOROOT=/usr/local/go
[root@80ef23abac1e /]# export GOPATH=$HOME
[root@80ef23abac1e /]# export PATH=$GOPATH/bin:$GOROOT/bin:$PATH
[root@80ef23abac1e /]# go install github.com/go-delve/delve/cmd/dlv@latest
go: downloading github.com/go-delve/delve v1.9.0
go: downloading github.com/sirupsen/logrus v1.6.0
go: downloading github.com/spf13/cobra v1.1.3
go: downloading github.com/mattn/go-isatty v0.0.3
go: downloading golang.org/x/sys v0.0.0-20211117180635-dee7805ff2e1
go: downloading gopkg.in/yaml.v2 v2.4.0
go: downloading github.com/cpuguy83/go-md2man/v2 v2.0.0
go: downloading github.com/spf13/pflag v1.0.5
go: downloading github.com/cosiner/argv v0.1.0
go: downloading github.com/derekparker/trie v0.0.0-20200317170641-1fdf38b7b0e9
go: downloading github.com/go-delve/liner v1.2.3-0.20220127212407-d32d89dd2a5d
go: downloading github.com/google/go-dap v0.6.0
go: downloading github.com/russross/blackfriday/v2 v2.0.1
go: downloading go.starlark.net v0.0.0-20200821142938-949cc6f4b097
go: downloading github.com/hashicorp/golang-lru v0.5.4
go: downloading golang.org/x/arch v0.0.0-20190927153633-4e8777c89be4
go: downloading github.com/mattn/go-runewidth v0.0.13
go: downloading github.com/shurcooL/sanitized_anchor_name v1.0.0
go: downloading github.com/rivo/uniseg v0.2.0
root/pkg/mod/github.com/go-delve/[email protected]/service/debugger/debugger.go:28:2: found packages native (dump_linux.go) and your_operating_system_and_architecture_combination_is_not_supported_by_delve (support_sentinel.go) in /root/pkg/mod/github.com/go-delve/[email protected]/pkg/proc/native
[root@80ef23abac1e /]# go version
go version go1.18.3 linux/s390x

Megha-Rajanna avatar Jul 13 '22 11:07 Megha-Rajanna