From cfe95aee35b0197c4c1301265f11eb4aba287633 Mon Sep 17 00:00:00 2001 From: tshah14 Date: Tue, 2 Sep 2025 21:47:03 +0530 Subject: [PATCH] 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. --- pkg/proc/native/support_sentinel_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/proc/native/support_sentinel_linux.go b/pkg/proc/native/support_sentinel_linux.go index c2b01cef..39db9b51 100644 --- a/pkg/proc/native/support_sentinel_linux.go +++ b/pkg/proc/native/support_sentinel_linux.go @@ -1,4 +1,4 @@ -//go:build linux && !amd64 && !arm64 && !386 && !(ppc64le && exp.linuxppc64le) && !(riscv64 && exp.linuxriscv64) && !(loong64 && exp.linuxloong64) +//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.