Correct build flag for arm64

On arm64, the default build flag is the same as the one from
`go env` which is arm64. So we should use arm64 instead of
aarch64 for both build flag and file name.

Signed-off-by: Qiang Huang <h.huangqiang@huawei.com>
This commit is contained in:
Qiang Huang 2016-04-29 11:42:41 +00:00
parent f0f0c3e0dc
commit 313db3df26
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
// +build linux,!aarch64
// +build linux,!arm64
package archutils

View File

@ -1,4 +1,4 @@
// +build linux,aarch64
// +build linux,arm64
package archutils