Home | History | Annotate | Download | only in utils

Lines Matching full:jobs

58 # The user may control parallelism via the --jobs and --threads
59 # switches. --jobs tells llvm-compilers-checl the maximum total
63 # those builds. If --threads is less than --jobs, --threads workers
66 # (--jobs / --threads) to use up the remaining job capacity. Once a
135 parser.add_option("--jobs", "-j", default=8, type="int",
136 help=("The number of simultaneous build jobs "
249 def __init__(self, work_queue, jobs,
254 self.jobs = jobs
389 llvm=dict(debug=["-j" + str(self.jobs)],
390 release=["-j" + str(self.jobs)],
391 paranoid=["-j" + str(self.jobs)]),
392 dragonegg=dict(debug=["-j" + str(self.jobs)],
393 release=["-j" + str(self.jobs)],
394 paranoid=["-j" + str(self.jobs)]))
553 jobs = options.jobs // options.threads
554 if jobs == 0:
555 jobs = 1
559 logging.getLogger().info("Building with " + str(options.jobs) + " jobs and "
560 + str(numthreads) + " threads using " + str(jobs)
561 + " make jobs")
567 builder = Builder(work_queue, jobs,