Skip to content

Commit

Permalink
Add a note for 32-bit ARM architecture. (#437)
Browse files Browse the repository at this point in the history
  • Loading branch information
logoff authored Aug 14, 2023
1 parent 1f6c108 commit b2fcbdf
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,20 @@ export GOROOT_BOOTSTRAP=$GOROOT
gvm install go1.7
```
### A Note on ARMv6 and ARMv7 architectures (32 bit)
Binary versions for ARMv6 architecture are available [starting from Go 1.6](https://go.dev/dl/#go1.6). So, it is necessary to bootstrap with an existing binary version, then it will be possible compiling other versions. For instance, to bootstrap a setup, version `1.21.0` may be used:
```
gvm install go1.21.0 -B
gvm use go1.21.0
```
And then, compile any other version:
```
gvm install go1.20.7
```
#### To install Go 1.20+
Go 1.20+ requires go1.17.3+. Use the below:
Expand Down

0 comments on commit b2fcbdf

Please sign in to comment.