diff --git a/doc/install-source.html b/doc/install-source.html index 3e84b27542..4bf0ba35fb 100644 --- a/doc/install-source.html +++ b/doc/install-source.html @@ -33,7 +33,7 @@ compiler using the GCC back end, see
-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.
@@ -55,7 +55,7 @@ architectures.arm (ARM)
arm64 (AArch64)
@@ -69,6 +69,12 @@ architectures.
mips, mipsle (32-bit MIPS big- and little-endian)
+mips64, mips64le (64-bit MIPS big- and little-endian)
$GOARCH are
386 (32-bit x86), arm (32-bit ARM), arm64 (64-bit ARM),
ppc64le (PowerPC 64-bit, little-endian), ppc64 (PowerPC 64-bit, big-endian),
mips64le (MIPS 64-bit, little-endian), and mips64 (MIPS 64-bit, big-endian).
+mipsle (MIPS 32-bit, little-endian), and mips (MIPS 32-bit, big-endian).
The valid combinations of $GOOS and $GOARCH are:
linux | ppc64le |
|
linux | mips |
+|
linux | mipsle |
+|
linux | mips64 |
|