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:
parent
f0f0c3e0dc
commit
313db3df26
2 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
// +build linux,!aarch64
|
// +build linux,!arm64
|
||||||
|
|
||||||
package archutils
|
package archutils
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// +build linux,aarch64
|
// +build linux,arm64
|
||||||
|
|
||||||
package archutils
|
package archutils
|
||||||
|
|
Loading…
Reference in a new issue