Skip to content
Snippets Groups Projects
Commit 65c86ead authored by Christian Goetze's avatar Christian Goetze
Browse files

Max out distcc jobs to 12 in develop.py

parent 32100098
No related branches found
No related tags found
No related merge requests found
......@@ -391,6 +391,8 @@ def mk_distcc_hosts(basename, range):
if hostname.startswith('eniac'):
hosts, job_count = mk_distcc_hosts('eniac', 71)
os.putenv('DISTCC_HOSTS', hosts)
if job_count > 12:
job_count = 12;
opts.extend(['-j', str(job_count)])
if targets:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment