mirror of
https://github.com/go-delve/delve.git
synced 2025-10-29 09:46:56 +08:00
*: add ppc64le support (#2963)
* Add vendor/golang.org/x/arch/ppc64 * Add ppc64le support
This commit is contained in:
@ -291,6 +291,9 @@ func tagFlags() string {
|
||||
if runtime.GOOS == "windows" && runtime.GOARCH == "arm64" {
|
||||
tags = append(tags, "exp.winarm64")
|
||||
}
|
||||
if runtime.GOOS == "linux" && runtime.GOARCH == "ppc64le" {
|
||||
tags = append(tags, "exp.linuxppc64le")
|
||||
}
|
||||
if Tags != nil && len(*Tags) > 0 {
|
||||
tags = append(tags, *Tags...)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user