Add support for ARMv8 (AKA: arm64 or Aarch64)

Signed-off-by: Adam Conrad <adconrad@0c3.net>
This commit is contained in:
Adam Conrad
2015-04-10 12:48:48 -06:00
parent b0fbd0591a
commit 38ef9ee346
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -12,6 +12,7 @@ import (
// We are declaring the macro here because the SETNS syscall does not exist in th stdlib
var setNsMap = map[string]uintptr{
"linux/386": 346,
"linux/arm64": 268,
"linux/amd64": 308,
"linux/arm": 374,
"linux/ppc64": 350,
+1 -1
View File
@@ -1,4 +1,4 @@
// +build linux,amd64 linux,ppc64 linux,ppc64le linux,s390x
// +build linux,arm64 linux,amd64 linux,ppc64 linux,ppc64le linux,s390x
package system