Max out distcc jobs to 12 in develop.py

master
Christian Goetze 2009-05-14 20:56:03 +00:00
parent 32100098f5
commit 65c86eadcb
1 changed files with 2 additions and 0 deletions

View File

@ -391,6 +391,8 @@ class LinuxSetup(UnixSetup):
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: