mirror of
https://github.com/golang/go
synced 2024-11-17 04:04:46 -07:00
cmd/nm, cmd/objdump, cmd/pprof: disassembly is not supported on loong64
Contributors to the loong64 port are: Weining Lu <luweining@loongson.cn> Lei Wang <wanglei@loongson.cn> Lingqin Gong <gonglingqin@loongson.cn> Xiaolin Zhao <zhaoxiaolin@loongson.cn> Meidan Li <limeidan@loongson.cn> Xiaojuan Zhai <zhaixiaojuan@loongson.cn> Qiyuan Pu <puqiyuan@loongson.cn> Guoqi Chen <chenguoqi@loongson.cn> This port has been updated to Go 1.15.6: https://github.com/loongson/go Updates #46229 Change-Id: Ic96e4f0c46d9a6b8cd020e899f32c40681daf9c5 Reviewed-on: https://go-review.googlesource.com/c/go/+/342323 Run-TryBot: Ian Lance Taylor <iant@google.com> Reviewed-by: David Chase <drchase@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com>
This commit is contained in:
parent
afd181cf0b
commit
076039a5e1
@ -24,7 +24,7 @@ func canInternalLink() bool {
|
||||
}
|
||||
case "linux":
|
||||
switch runtime.GOARCH {
|
||||
case "arm64", "mips64", "mips64le", "mips", "mipsle", "ppc64", "ppc64le", "riscv64":
|
||||
case "arm64", "loong64", "mips64", "mips64le", "mips", "mipsle", "ppc64", "ppc64le", "riscv64":
|
||||
return false
|
||||
}
|
||||
case "openbsd":
|
||||
|
@ -107,6 +107,8 @@ var ppcGnuNeed = []string{
|
||||
|
||||
func mustHaveDisasm(t *testing.T) {
|
||||
switch runtime.GOARCH {
|
||||
case "loong64":
|
||||
t.Skipf("skipping on %s", runtime.GOARCH)
|
||||
case "mips", "mipsle", "mips64", "mips64le":
|
||||
t.Skipf("skipping on %s, issue 12559", runtime.GOARCH)
|
||||
case "riscv64":
|
||||
|
@ -72,6 +72,8 @@ func mustHaveCPUProfiling(t *testing.T) {
|
||||
|
||||
func mustHaveDisasm(t *testing.T) {
|
||||
switch runtime.GOARCH {
|
||||
case "loong64":
|
||||
t.Skipf("skipping on %s.", runtime.GOARCH)
|
||||
case "mips", "mipsle", "mips64", "mips64le":
|
||||
t.Skipf("skipping on %s, issue 12559", runtime.GOARCH)
|
||||
case "riscv64":
|
||||
|
Loading…
Reference in New Issue
Block a user