Skip to content

Commit d75391a

Browse files
committed
doc: add mips64/mips64le to supported GOARCHes
Change-Id: If9dc08d6c29bf60b63d75d973033897ad8bf8cc4 Reviewed-on: https://go-review.googlesource.com/16905 Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 07cdebf commit d75391a

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

doc/install-source.html

+15-2
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,12 @@ <h2 id="introduction">Introduction</h2>
7171
<dd>
7272
Supports Linux binaries. New in 1.5 and not as well excercised as other ports.
7373
</dd>
74+
<dt>
75+
<code>mips64, mips64le</code> (64-bit MIPS big- and little-endian)
76+
</dt>
77+
<dd>
78+
Supports Linux binaries. New in 1.6 and not as well excercised as other ports.
79+
</dd>
7480
</dl>
7581

7682
<p>
@@ -112,7 +118,7 @@ <h2 id="go14">Install Go compiler binaries</h2>
112118

113119
<p>
114120
If you want to install Go 1.5 on a system that is not supported by Go 1.4 (such
115-
as <code>linux/ppc64</code>) you can either use
121+
as <code>linux/ppc64</code> and <code>linux/mips64le</code>) you can either use
116122
<a href="/src/bootstrap.bash">bootstrap.bash</a> on a system that can bootstrap Go
117123
1.5 normally, or bootstrap with gccgo 5.
118124
</p>
@@ -405,7 +411,8 @@ <h2 id="environment">Optional environment variables</h2>
405411
Choices for <code>$GOARCH</code> are
406412
<code>amd64</code> (64-bit x86, the most mature port),
407413
<code>386</code> (32-bit x86), <code>arm</code> (32-bit ARM), <code>arm64</code> (64-bit ARM),
408-
<code>ppc64le</code> (PowerPC 64-bit, little-endian), and <code>ppc64</code> (PowerPC 64-bit, big-endian).
414+
<code>ppc64le</code> (PowerPC 64-bit, little-endian), <code>ppc64</code> (PowerPC 64-bit, big-endian),
415+
<code>mips64le</code> (MIPS 64-bit, little-endian), and <code>mips64</code> (MIPS 64-bit, big-endian).
409416
The valid combinations of <code>$GOOS</code> and <code>$GOARCH</code> are:
410417
<table cellpadding="0">
411418
<tr>
@@ -454,6 +461,12 @@ <h2 id="environment">Optional environment variables</h2>
454461
<td></td><td><code>linux</code></td> <td><code>ppc64le</code></td>
455462
</tr>
456463
<tr>
464+
<td></td><td><code>linux</code></td> <td><code>mips64</code></td>
465+
</tr>
466+
<tr>
467+
<td></td><td><code>linux</code></td> <td><code>mips64le</code></td>
468+
</tr>
469+
<tr>
457470
<td></td><td><code>netbsd</code></td> <td><code>386</code></td>
458471
</tr>
459472
<tr>

0 commit comments

Comments
 (0)