From eabfd4b59e304f55de4ffc10fc02cd29d0c98fb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=AA=20Duy=20Quang?= Date: Mon, 21 Mar 2022 02:43:38 +0700 Subject: [PATCH] Added notice about concurrently running jobs. (#1330) --- doc/custom-build.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/custom-build.md b/doc/custom-build.md index 1c1ba2202..439c23d19 100644 --- a/doc/custom-build.md +++ b/doc/custom-build.md @@ -44,6 +44,8 @@ To create a custom build, you need: 4. `webfont::` : Web fonts only (CSS + WOFF2); 5. `woff2::` : WOFF2 only. +⚠️ **Important:** By default, the build system will schedule a number of concurrently running jobs equal to the number of threads available on the CPU, which *will* push CPU usage and also likely RAM usage, if you do not have very much to work with, to the ceiling (each job consumes more than 1 GB of RAM at its peak). If this is an issue for you, pass an additional argument `--jCmd=`. + ### Configuring Custom Build Configuration of build plans are organized under `[buildPlans.]` sections in the `private-build-plans.toml`. You can use [the Customizer](https://be5invis.github.io/Iosevka/customizer) to create the build plan, and/or manually edit them, following the instructions below.