Commit 9c0c0507 authored by Russ Cox's avatar Russ Cox

[dev.cc] cmd/asm: add ppc64le support

Change-Id: I780ed76c9217d387a73fd7530af2f40948aa1fe4
Reviewed-on: https://go-review.googlesource.com/5452Reviewed-by: 's avatarRob Pike <r@golang.org>
parent cf6a77b3
......@@ -75,6 +75,10 @@ func Set(GOARCH string) *Arch {
a := archPPC64()
a.LinkArch = &ppc64.Linkppc64
return a
case "ppc64le":
a := archPPC64()
a.LinkArch = &ppc64.Linkppc64le
return a
}
return nil
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment