Skip to content

Commit

Permalink
doc: document the mips port in install-source.html
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
minux committed Dec 6, 2016
1 parent 6c9f600 commit 8adff32
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions doc/install-source.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ <h2 id="introduction">Introduction</h2>
</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>
Expand All @@ -55,7 +55,7 @@ <h2 id="introduction">Introduction</h2>
<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>)
Expand All @@ -69,6 +69,12 @@ <h2 id="introduction">Introduction</h2>
<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>
Expand Down Expand Up @@ -463,6 +469,7 @@ <h2 id="environment">Optional environment variables</h2>
<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>
Expand Down Expand Up @@ -514,6 +521,12 @@ <h2 id="environment">Optional environment variables</h2>
<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>
Expand Down

0 comments on commit 8adff32

Please sign in to comment.