]> Cypherpunks repositories - gostls13.git/commitdiff
doc: document the mips port in install-source.html
authorShenghou Ma <minux@golang.org>
Fri, 2 Dec 2016 04:12:18 +0000 (23:12 -0500)
committerMinux Ma <minux@golang.org>
Tue, 6 Dec 2016 04:23:46 +0000 (04:23 +0000)
While we're at it, also mention OpenBSD/ARM support.

Change-Id: I4df4a158b67d11720146d05a235099d452295170
Reviewed-on: https://go-review.googlesource.com/33854
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
doc/install-source.html

index 3e84b27542eb554becd2bb707d8d4cafd5f531b9..4bf0ba35fb8e852c7cb071d15853666143898b83 100644 (file)
@@ -33,7 +33,7 @@ compiler using the GCC back end, see
 </p>
 
 <p>
-The Go compilers support seven instruction sets.
+The Go compilers support eight instruction sets.
 There are important differences in the quality of the compilers for the different
 architectures.
 </p>
@@ -55,7 +55,7 @@ architectures.
        <code>arm</code> (<code>ARM</code>)
 </dt>
 <dd>
-       Supports Linux, FreeBSD, NetBSD and Darwin binaries. Less widely used than the other ports.
+       Supports Linux, FreeBSD, NetBSD, OpenBSD and Darwin binaries. Less widely used than the other ports.
 </dd>
 <dt>
        <code>arm64</code> (<code>AArch64</code>)
@@ -69,6 +69,12 @@ architectures.
 <dd>
        Supports Linux binaries. New in 1.5 and not as well exercised as other ports.
 </dd>
+<dt>
+       <code>mips, mipsle</code> (32-bit MIPS big- and little-endian)
+</dt>
+<dd>
+       Supports Linux binaries. New in 1.8 and not as well exercised as other ports.
+</dd>
 <dt>
        <code>mips64, mips64le</code> (64-bit MIPS big- and little-endian)
 </dt>
@@ -463,6 +469,7 @@ Choices for <code>$GOARCH</code> are
 <code>386</code> (32-bit x86), <code>arm</code> (32-bit ARM), <code>arm64</code> (64-bit ARM),
 <code>ppc64le</code> (PowerPC 64-bit, little-endian), <code>ppc64</code> (PowerPC 64-bit, big-endian),
 <code>mips64le</code> (MIPS 64-bit, little-endian), and <code>mips64</code> (MIPS 64-bit, big-endian).
+<code>mipsle</code> (MIPS 32-bit, little-endian), and <code>mips</code> (MIPS 32-bit, big-endian).
 The valid combinations of <code>$GOOS</code> and <code>$GOARCH</code> are:
 <table cellpadding="0">
 <tr>
@@ -514,6 +521,12 @@ The valid combinations of <code>$GOOS</code> and <code>$GOARCH</code> are:
 <td></td><td><code>linux</code></td> <td><code>ppc64le</code></td>
 </tr>
 <tr>
+<td></td><td><code>linux</code></td> <td><code>mips</code></td>
+</tr>
+<tr>
+<td></td><td><code>linux</code></td> <td><code>mipsle</code></td>
+</tr>
+<tr>
 <td></td><td><code>linux</code></td> <td><code>mips64</code></td>
 </tr>
 <tr>