diff options
Diffstat (limited to 'docs/README.iOS.md')
-rw-r--r-- | docs/README.iOS.md | 2 |
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. |