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 "
255 def __init__(self, work_queue, jobs,
260 self.jobs = jobs
405 llvm=dict(debug=["-j" + str(self.jobs)],
406 release=["-j" + str(self.jobs)],
407 jobs)]),
408 dragonegg=dict(debug=["-j" + str(self.jobs)],
409 release=["-j" + str(self.jobs)],
410 paranoid=["-j" + str(self.jobs)]))
597 jobs = options.jobs // options.threads
598 if jobs == 0:
599 jobs = 1
603 logging.getLogger().info("Building with " + str(options.jobs) + " jobs and "
604 + str(numthreads) + " threads using " + str(jobs)
605 + " make jobs")
611 builder = Builder(work_queue, jobs,