Lines Matching full:jobs
99 # The user may control parallelism via the --jobs and --threads
100 # switches. --jobs tells llvmbuild the maximum total number of builds
104 # than --jobs, --threads workers will be launched and each one will
106 # will invoke GNU make with -j (--jobs / --threads) to use up the
177 parser.add_option("--jobs", "-j", default=8, type="int",
178 help=("The number of simultaneous build jobs "
300 def __init__(self, work_queue, jobs,
305 self.jobs = jobs
517 llvm=dict(debug=["-j" + str(self.jobs)],
518 release=["-j" + str(self.jobs)],
519 paranoid=["-j" + str(self.jobs)]),
520 llvm_gcc=dict(debug=["-j" + str(self.jobs),
522 release=["-j" + str(self.jobs),
524 paranoid=["-j" + str(self.jobs),
526 llvm2=dict(debug=["-j" + str(self.jobs)],
527 release=["-j" + str(self.jobs)],
528 paranoid=["-j" + str(self.jobs)]),
529 gcc=dict(debug=["-j" + str(self.jobs),
531 release=["-j" + str(self.jobs),
533 paranoid=["-j" + str(self.jobs),
535 dragonegg=dict(debug=["-j" + str(self.jobs)],
536 release=["-j" + str(self.jobs)],
537 paranoid=["-j" + str(self.jobs)]))
753 jobs = options.jobs // options.threads
754 if jobs == 0:
755 jobs = 1
759 logging.getLogger().info("Building with " + str(options.jobs) + " jobs and "
760 + str(numthreads) + " threads using " + str(jobs)
761 + " make jobs")
764 builder = Builder(work_queue, jobs,