mirror of
https://github.com/go-delve/delve.git
synced 2025-10-27 12:05:21 +08:00
-Delve is now being built for ppc64le, so support_sentinel_linux.go should not be compiled for that architecture. -This prevents build errors due to conflicting packages when compiling on ppc64le.
6 lines
263 B
Go
6 lines
263 B
Go
//go:build linux && !amd64 && !arm64 && !386 && !(riscv64 && exp.linuxriscv64) && !(loong64 && exp.linuxloong64) && !ppc64le
|
|
|
|
// This file is used to detect build on unsupported GOOS/GOARCH combinations.
|
|
|
|
package your_linux_architecture_is_not_supported_by_delve
|