diff options
author | Bradley Sepos <[email protected]> | 2016-05-24 16:58:32 -0400 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2016-05-24 16:58:32 -0400 |
commit | 12ffa792a5ec30ae3c2b0b90f18ce6d80d3cfd1b (patch) | |
tree | a6ea04cbe4eec1508182c529e95cb0d44afc7e1c /make | |
parent | cfdd0c22d34c759136336e5e77cd98e9d14001e7 (diff) |
build: Increase max logical CPU cores to 64.
Diffstat (limited to 'make')
-rw-r--r-- | make/configure.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/configure.py b/make/configure.py index 0b9050ec8..7ef88977e 100644 --- a/make/configure.py +++ b/make/configure.py @@ -617,8 +617,8 @@ class CoreProbe( Action ): ## clamp if self.count < 1: self.count = 1 - elif self.count > 32: - self.count = 32 + elif self.count > 64: + self.count = 64 if options.launch: if options.launch_jobs == 0: |