From ad6037aba950b9d62a17f9432de42af260a8880f Mon Sep 17 00:00:00 2001 From: Cherry Mui Date: Mon, 16 Dec 2024 13:57:59 -0500 Subject: [PATCH] _content/doc/go1.24: add objdump updates The objdump tool now supports dissassembly on riscv64, loong64, and s390x. Updates golang/go#15255, golang/go#36738. For golang/go#68545. Change-Id: I5e913eb27383f42777baac1cd8436a5c6eb629fd Reviewed-on: https://go-review.googlesource.com/c/website/+/636519 LUCI-TryBot-Result: Go LUCI Reviewed-by: Dmitri Shuralyov Reviewed-by: Dmitri Shuralyov --- _content/doc/go1.24.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/_content/doc/go1.24.md b/_content/doc/go1.24.md index 81307d334c..ae2f1d5caa 100644 --- a/_content/doc/go1.24.md +++ b/_content/doc/go1.24.md @@ -101,6 +101,12 @@ incorrect call sequence for `f(0)`. New in this release is a better detector for this error condition when the incompatible declarations appear in different files. See [#67699](/issue/67699). +### Objdump + + +The [objdump](/cmd/objdump) tool now supports dissassembly on 64-bit +LoongArch (`GOARCH=loong64`), RISC-V (`GOARCH=riscv64`), and S390X (`GOARCH=s390x`). + ### Vet