Files
delve/pkg/proc/native/support_sentinel_linux.go
tshah14 cfe95aee35 support_sentinel_linux.go: Fixed the ppc64le clause in the file to prevent build failures. (#4129)
-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.
2025-09-02 12:17:03 -04:00

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