Commit b4501ac4 authored by Yao Zhang's avatar Yao Zhang Committed by Minux Ma

cmd/cgo: added support for GOARCH=mips64{,le}

The actual cgo is not supported for now. This is just the cgo command.

Change-Id: I25625100ee552971f47e681b7d613cba16a2132f
Reviewed-on: https://go-review.googlesource.com/14446Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
Reviewed-by: default avatarMinux Ma <minux@golang.org>
parent d5cd4ab4
......@@ -138,6 +138,8 @@ var ptrSizeMap = map[string]int64{
"amd64": 8,
"arm": 4,
"arm64": 8,
"mips64": 8,
"mips64le": 8,
"ppc64": 8,
"ppc64le": 8,
"s390": 4,
......@@ -149,6 +151,8 @@ var intSizeMap = map[string]int64{
"amd64": 8,
"arm": 4,
"arm64": 8,
"mips64": 8,
"mips64le": 8,
"ppc64": 8,
"ppc64le": 8,
"s390": 4,
......
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