aboutsummaryrefslogtreecommitdiff
path: root/build2/b-options.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-10-17 12:12:49 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-10-17 12:14:22 +0200
commit3bf169720b147bd5322e190469e134d99ff424d6 (patch)
tree291335bd4dda08cb845b3643404cd14d7f0719d3 /build2/b-options.cxx
parentb3eaf577762078b097f5e68904aa15c4655c80df (diff)
Adjust max-threads multiplier for 32-bit because of stack size increase
Diffstat (limited to 'build2/b-options.cxx')
-rw-r--r--build2/b-options.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/build2/b-options.cxx b/build2/b-options.cxx
index 5041cf3..6ee835d 100644
--- a/build2/b-options.cxx
+++ b/build2/b-options.cxx
@@ -714,7 +714,7 @@ namespace build2
os << std::endl
<< "\033[1m--max-jobs\033[0m|\033[1m-J\033[0m \033[4mnum\033[0m Maximum number of jobs (threads) to create. The default is" << ::std::endl
- << " 16x the number of active jobs (--jobs|j\033[0m) on 32-bit" << ::std::endl
+ << " 8x the number of active jobs (--jobs|j\033[0m) on 32-bit" << ::std::endl
<< " architectures and 32x on 64-bit. See the build system" << ::std::endl
<< " scheduler implementation for details." << ::std::endl;