summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorBradley Sepos <[email protected]>2016-05-24 16:58:32 -0400
committerBradley Sepos <[email protected]>2016-05-24 16:58:32 -0400
commit12ffa792a5ec30ae3c2b0b90f18ce6d80d3cfd1b (patch)
treea6ea04cbe4eec1508182c529e95cb0d44afc7e1c /make
parentcfdd0c22d34c759136336e5e77cd98e9d14001e7 (diff)
build: Increase max logical CPU cores to 64.
Diffstat (limited to 'make')
-rw-r--r--make/configure.py4
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: