Add support for 32-bit big-endian PowerPC
Signed-off-by: Adam Conrad <adconrad@0c3.net>
This commit is contained in:
parent
0e3181a0b0
commit
34dba2f7e7
|
@ -15,6 +15,7 @@ var setNsMap = map[string]uintptr{
|
|||
"linux/arm64": 268,
|
||||
"linux/amd64": 308,
|
||||
"linux/arm": 375,
|
||||
"linux/ppc": 350,
|
||||
"linux/ppc64": 350,
|
||||
"linux/ppc64le": 350,
|
||||
"linux/s390x": 339,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// +build linux,arm64 linux,amd64 linux,ppc64 linux,ppc64le linux,s390x
|
||||
// +build linux,arm64 linux,amd64 linux,ppc linux,ppc64 linux,ppc64le linux,s390x
|
||||
|
||||
package system
|
||||
|
||||
|
|
Loading…
Reference in New Issue