*: add ppc64le support (#2963)

* Add vendor/golang.org/x/arch/ppc64

* Add ppc64le support
This commit is contained in:
Álex Sáez
2023-07-07 18:30:38 +02:00
committed by GitHub
parent 9f3e146129
commit 71f1220717
38 changed files with 7593 additions and 17 deletions

View File

@ -36,6 +36,9 @@ func TestDebugger_LaunchNoExecutablePerm(t *testing.T) {
if runtime.GOARCH == "arm64" && runtime.GOOS == "linux" {
os.Setenv("GOARCH", "amd64")
}
if runtime.GOARCH == "ppc64le" && runtime.GOOS == "linux" {
os.Setenv("GOARCH", "amd64")
}
os.Setenv("GOOS", switchOS[runtime.GOOS])
exepath := filepath.Join(buildtestdir, debugname)
defer os.Remove(exepath)