aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2020-06-29 14:32:22 +0200
committerTobias Klauser <tobias.klauser@gmail.com>2020-07-01 09:07:18 +0000
commit84152d57692fc21ad5ee4bcf8eb0a5ec2a958790 (patch)
treeee3be542f07fd46bd550802cb9fa3dd2f2a2b375
parent96e83664378918980bd8f60822c4bc39befcb668 (diff)
downloadgo-84152d57692fc21ad5ee4bcf8eb0a5ec2a958790.tar.gz
go-84152d57692fc21ad5ee4bcf8eb0a5ec2a958790.zip
doc: add riscv64 to ports list
Mention support for the 64-bit RISC-V instruction set (GOARCH=riscv64) in the "Installing Go from source" document. Also sort the list of supported instruction sets alphabetically. Updates #27532 Change-Id: I07a443044a41a803853978dd7f7446de89ecceb5 Reviewed-on: https://go-review.googlesource.com/c/go/+/240377 Reviewed-by: Alberto Donizetti <alb.donizetti@gmail.com>
-rw-r--r--doc/install-source.html16
1 files changed, 11 insertions, 5 deletions
diff --git a/doc/install-source.html b/doc/install-source.html
index b5b422ea11..f8cda1dc21 100644
--- a/doc/install-source.html
+++ b/doc/install-source.html
@@ -33,7 +33,7 @@ compiler using the GCC back end, see
</p>
<p>
-The Go compilers support twelve instruction sets:
+The Go compilers support the following instruction sets:
<dl>
<dt>
@@ -49,22 +49,28 @@ The Go compilers support twelve instruction sets:
The <code>ARM</code> instruction set, 64-bit (<code>AArch64</code>) and 32-bit.
</dd>
<dt>
+ <code>mips64</code>, <code>mips64le</code>, <code>mips</code>, <code>mipsle</code>
+</dt>
+<dd>
+ The <code>MIPS</code> instruction set, big- and little-endian, 64- and 32-bit.
+</dd>
+<dt>
<code>ppc64</code>, <code>ppc64le</code>
</dt>
<dd>
The 64-bit PowerPC instruction set, big- and little-endian.
</dd>
<dt>
- <code>s390x</code>
+ <code>riscv64</code>
</dt>
<dd>
- The IBM z/Architecture.
+ The 64-bit RISC-V instruction set.
</dd>
<dt>
- <code>mips64</code>, <code>mips64le</code>, <code>mips</code>, <code>mipsle</code>
+ <code>s390x</code>
</dt>
<dd>
- The <code>MIPS</code> instruction set, big- and little-endian, 64- and 32-bit.
+ The IBM z/Architecture.
</dd>
<dt>
<code>wasm</code>