From 7fe9da14deb9edbcc895d6568cacaf3ae08be952 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 15 Feb 2016 21:30:49 +0100 Subject: sys: fix build with Go1.4 It does not know about arm64 arch. Fixes #17 --- sys/sys_amd64.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sys/sys_amd64.go') diff --git a/sys/sys_amd64.go b/sys/sys_amd64.go index e7c387fe3..0aa52b81c 100644 --- a/sys/sys_amd64.go +++ b/sys/sys_amd64.go @@ -1,4 +1,7 @@ // AUTOGENERATED FILE + +// +build amd64 + package sys // Maps internal syscall ID onto kernel syscall number. -- cgit mrf-deployment