mirror of
https://github.com/go-delve/delve.git
synced 2025-10-27 20:23:41 +08:00
* delve: support linux-loong64 native debug LoongArch is a new RISC ISA, which is independently designed by Loongson Technology. LoongArch includes a reduced 32-bit version (LA32R), a standard 32-bit version (LA32S) and a 64-bit version (LA64), and loong64 is the 64-bit version of LoongArch. LoongArch documentation: https://github.com/loongson/LoongArch-Documentation.git * *: mark loong64 port as experimental --------- Co-authored-by: Huang Qiqi <huangqiqi@loongson.cn>
6 lines
285 B
Go
6 lines
285 B
Go
//go:build linux && !amd64 && !arm64 && !386 && !(ppc64le && exp.linuxppc64le) && !(riscv64 && exp.linuxriscv64) && !(loong64 && exp.linuxloong64)
|
|
|
|
// This file is used to detect build on unsupported GOOS/GOARCH combinations.
|
|
|
|
package your_linux_architecture_is_not_supported_by_delve
|