aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-08-03 14:34:24 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2017-08-05 00:24:59 +0300
commita800c96f99485341f52c6dacf60a2b63aa1c0b1a (patch)
treeaef6d7a54a3a4edc46907a4a1b4109c763dfa09e /docs
parente95ba1ada5e0f98daa0bca78440eb5ceef78ef7e (diff)
downloadmeson-a800c96f99485341f52c6dacf60a2b63aa1c0b1a.zip
meson-a800c96f99485341f52c6dacf60a2b63aa1c0b1a.tar.gz
meson-a800c96f99485341f52c6dacf60a2b63aa1c0b1a.tar.bz2
Add option to limit maximum number of concurrent link processes.
Diffstat (limited to 'docs')
-rw-r--r--docs/markdown/Release-notes-for-0.42.0.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/markdown/Release-notes-for-0.42.0.md b/docs/markdown/Release-notes-for-0.42.0.md
index 9b2df63..ff0771f 100644
--- a/docs/markdown/Release-notes-for-0.42.0.md
+++ b/docs/markdown/Release-notes-for-0.42.0.md
@@ -88,3 +88,11 @@ other. This warning will become a hard error in some future release.
Vulkan can now be used as native dependency. The dependency module will detect
the VULKAN_SDK environment variable or otherwise try to receive the vulkan
library and header via pkgconfig or from the system.
+
+## Limiting the maximum number of linker processes
+
+With the Ninja backend it is now possible to limit the maximum number of
+concurrent linker processes. This is usually only needed for projects
+that have many large link steps that cause the system to run out of
+memory if they are run in parallel. This limit can be set with the
+new `backend_max_links` option.