mitchellh / gox

A dead simple, no frills Go cross compile tool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Could you please add arm64 for extra option for arm64?

SuzukiHonoka opened this issue · comments

The 32 bit arm support now are not widely used by Linux programmer although we could simply switch to arm64.
Please consider to add arm64 as a extra option.
Thanks!

You can compile for linux/arm64 using the -osarch= parameter.

Here's the full command: gox -osarch="linux/arm64"

You can compile for linux/arm64 using the -osarch= parameter.

Here's the full command: gox -osarch="linux/arm64"

thank you