diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2016-02-15 21:30:49 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2016-02-15 21:33:00 +0100 |
| commit | 7fe9da14deb9edbcc895d6568cacaf3ae08be952 (patch) | |
| tree | 79ecc43e37f52b6bf5563c4ecc2e2e2cbd3b06ec /sys/sys_amd64.go | |
| parent | 2275fed9dffea1e2f2d3e0da0a76ad4152d515fe (diff) | |
sys: fix build with Go1.4
It does not know about arm64 arch.
Fixes #17
Diffstat (limited to 'sys/sys_amd64.go')
| -rw-r--r-- | sys/sys_amd64.go | 3 |
1 files changed, 3 insertions, 0 deletions
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. |
