summaryrefslogtreecommitdiff
path: root/doc/api/process.md
diff options
context:
space:
mode:
authormutao <mutao-hf@loongson.cn>2019-05-30 11:12:50 +0800
committerRod Vagg <rod@vagg.org>2019-06-18 14:28:13 +1000
commiteaddb22d920d092f13a034a11ed1e4516c3f602a (patch)
treec9e5b2467757f406744c1cf981052a389e3088d0 /doc/api/process.md
parent2a9f1ad4b0c725e0362d33e265dc22271c3466e7 (diff)
downloadandroid-node-v8-eaddb22d920d092f13a034a11ed1e4516c3f602a.tar.gz
android-node-v8-eaddb22d920d092f13a034a11ed1e4516c3f602a.tar.bz2
android-node-v8-eaddb22d920d092f13a034a11ed1e4516c3f602a.zip
Revert "build: remove mips support"
This reverts commit 9334e45aa0ed815c2745bcc2bb606d91be64998d. PR-URL: https://github.com/nodejs/node/pull/27992 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
Diffstat (limited to 'doc/api/process.md')
-rw-r--r--doc/api/process.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/process.md b/doc/api/process.md
index c868f01fa1..9300a2b5fe 100644
--- a/doc/api/process.md
+++ b/doc/api/process.md
@@ -541,8 +541,8 @@ added: v0.5.0
The `process.arch` property returns a string identifying the operating system
CPU architecture for which the Node.js binary was compiled.
-The current possible values are: `'arm'`, `'arm64'`, `'ia32'`,
-`'ppc'`, `'ppc64'`, `'s390'`, `'s390x'`, `'x32'`, and `'x64'`.
+The current possible values are: `'arm'`, `'arm64'`, `'ia32'`, `'mips'`,
+`'mipsel'`, `'ppc'`, `'ppc64'`, `'s390'`, `'s390x'`, `'x32'`, and `'x64'`.
```js
console.log(`This processor architecture is ${process.arch}`);