]> Cypherpunks repositories - gostls13.git/commitdiff
doc: add riscv64 to ports list
authorTobias Klauser <tklauser@distanz.ch>
Mon, 29 Jun 2020 12:32:22 +0000 (14:32 +0200)
committerTobias Klauser <tobias.klauser@gmail.com>
Wed, 1 Jul 2020 09:07:18 +0000 (09:07 +0000)
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>
doc/install-source.html

index b5b422ea111901fa1cf7580cb5d90a93a2a74779..f8cda1dc21114092f8eb6c8f29078f28ae65e4fe 100644 (file)
@@ -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>
@@ -48,6 +48,12 @@ The Go compilers support twelve instruction sets:
 <dd>
   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>
@@ -55,16 +61,16 @@ The Go compilers support twelve instruction sets:
   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>