aboutsummaryrefslogtreecommitdiff
path: root/docs/README.iOS.md
diff options
context:
space:
mode:
authorGarrett Brown <themagnificentmrb@gmail.com>2018-07-05 14:48:11 -0700
committerGarrett Brown <themagnificentmrb@gmail.com>2018-08-18 14:35:04 -0700
commit1d3e706702d5d733a1bfd060435953cff61fc596 (patch)
tree4624ad7b3f1e94dc63f67be1e399a49419729d24 /docs/README.iOS.md
parentd00778205cfb9b5864ce59ccf0191d2f67fd4f75 (diff)
[docs/README.*] Fix typo in .bashrc export
Diffstat (limited to 'docs/README.iOS.md')
-rw-r--r--docs/README.iOS.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/README.iOS.md b/docs/README.iOS.md
index e686bf3ded..84d584e40f 100644
--- a/docs/README.iOS.md
+++ b/docs/README.iOS.md
@@ -103,7 +103,7 @@ Build tools and dependencies:
make -j$(getconf _NPROCESSORS_ONLN)
```
-**TIP:** By adding `-j<number>` to the make command, you can choose how many concurrent jobs will be used and expedite the build process. It is recommended to use `-j$(getconf _NPROCESSORS_ONLN)` to compile on all available processor cores. The build machine can also be configured to do this automatically by adding `export MAKEFLAGS="-j(getconf _NPROCESSORS_ONLN)"` to your shell config (e.g. `~/.bashrc`).
+**TIP:** By adding `-j<number>` to the make command, you can choose how many concurrent jobs will be used and expedite the build process. It is recommended to use `-j$(getconf _NPROCESSORS_ONLN)` to compile on all available processor cores. The build machine can also be configured to do this automatically by adding `export MAKEFLAGS="-j$(getconf _NPROCESSORS_ONLN)"` to your shell config (e.g. `~/.bashrc`).
**WARNING:** Look for the `Dependencies built successfully.` success message. If in doubt run a single threaded `make` command until the message appears. If the single make fails, clean the specific library by issuing `make -C target/<name_of_failed_lib> distclean` and run `make`again.