Lines Matching full:jobs
57 # The user may control parallelism via the --jobs and --threads
58 # switches. --jobs tells llvm-compilers-check the maximum total
62 # those builds. If --threads is less than --jobs, --threads workers
65 # (--jobs / --threads) to use up the remaining job capacity. Once a
134 parser.add_option("--jobs", "-j", default=8, type="int",
135 help=("The number of simultaneous build jobs "
254 def __init__(self, work_queue, jobs, argument
259 self.jobs = jobs
404 llvm=dict(debug=["-j" + str(self.jobs)],
405 release=["-j" + str(self.jobs)],
406 paranoid=["-j" + str(self.jobs)]),
407 dragonegg=dict(debug=["-j" + str(self.jobs)],
408 release=["-j" + str(self.jobs)],
409 paranoid=["-j" + str(self.jobs)]))
596 jobs = options.jobs // options.threads variable
597 if jobs == 0:
598 jobs = 1 variable
602 logging.getLogger().info("Building with " + str(options.jobs) + " jobs and "
603 + str(numthreads) + " threads using " + str(jobs)
604 + " make jobs")
610 builder = Builder(work_queue, jobs,