diff --git a/toolchain/get_concurrent_links.py b/toolchain/get_concurrent_links.py index c1fbc8bfb..4a66dd398 100644 --- a/toolchain/get_concurrent_links.py +++ b/toolchain/get_concurrent_links.py @@ -55,7 +55,7 @@ def _GetDefaultConcurrentLinks(is_lto): if is_lto: mem_total_gb -= 10 # Reserve # For LTO builds the RAM requirements are even higher - mem_per_link_gb = 16 + mem_per_link_gb = 24 return int(max(1, mem_total_gb / mem_per_link_gb)) return 1 elif sys.platform == 'darwin':