blob: f20bb06dce10719f63094e93eeaef54a37d3fdca [file] [log] [blame]
David Greene8b8b4af2011-02-21 19:23:22 +00001#!/usr/bin/python3
2##===- utils/llvmbuild - Build the LLVM project ----------------*-python-*-===##
3#
4# The LLVM Compiler Infrastructure
5#
6# This file is distributed under the University of Illinois Open Source
7# License. See LICENSE.TXT for details.
8#
9##===----------------------------------------------------------------------===##
10#
11# This script builds many different flavors of the LLVM ecosystem. It
12# will build LLVM, Clang, llvm-gcc, and dragonegg as well as run tests
13# on them. This script is convenient to use to check builds and tests
14# before committing changes to the upstream repository
15#
16# A typical source setup uses three trees and looks like this:
17#
18# official
19# dragonegg
20# trunk
21# gcc
22# trunk
23# llvm
24# trunk
25# tools
26# clang
27# tags
28# RELEASE_28
29# tools
30# clang
31# llvm-gcc
32# trunk
33# tags
34# RELEASE_28
35# staging
36# dragonegg
37# trunk
38# gcc
39# trunk
40# llvm
41# trunk
42# tools
43# clang
44# tags
45# RELEASE_28
46# tools
47# clang
48# llvm-gcc
49# trunk
50# tags
51# RELEASE_28
52# commit
53# dragonegg
54# trunk
55# gcc
56# trunk
57# llvm
58# trunk
59# tools
60# clang
61# tags
62# RELEASE_28
63# tools
64# clang
65# llvm-gcc
66# trunk
67# tags
68# RELEASE_28
69#
70# "gcc" above is the upstream FSF gcc and "gcc/trunk" refers to the
71# 4.5 branch as discussed in the dragonegg build guide.
72#
73# In a typical workflow, the "official" tree always contains unchanged
74# sources from the main LLVM project repositories. The "staging" tree
75# is where local work is done. A set of changes resides there waiting
76# to be moved upstream. The "commit" tree is where changes from
77# "staging" make their way upstream. Individual incremental changes
78# from "staging" are applied to "commit" and committed upstream after
79# a successful build and test run. A successful build is one in which
80# testing results in no more failures than seen in the testing of the
81# "official" tree.
82#
83# A build may be invoked as such:
84#
85# llvmbuild --src=~/llvm/commit --src=~/llvm/staging
86# --src=~/llvm/official --branch=trunk --branch=tags/RELEASE_28
87# --build=debug --build=release --build=paranoid
88# --prefix=/home/greened/install --builddir=/home/greened/build
89#
90# This will build the LLVM ecosystem, including LLVM, Clang, llvm-gcc,
91# gcc 4.5 and dragonegg, putting build results in ~/build and
92# installing tools in ~/install. llvmbuild creates separate build and
93# install directories for each source/branch/build flavor. In the
94# above example, llvmbuild will build debug, release and paranoid
95# (debug+checks) flavors of the trunk and RELEASE_28 branches from
96# each source tree (official, staging and commit) for a total of
97# eighteen builds. All builds will be run in parallel.
98#
99# The user may control parallelism via the --jobs and --threads
100# switches. --jobs tells llvmbuild the maximum total number of builds
101# to activate in parallel. The user may think of it as equivalent to
102# the GNU make -j switch. --threads tells llvmbuild how many worker
103# threads to use to accomplish those builds. If --threads is less
104# than --jobs, --threads workers will be launched and each one will
105# pick a source/branch/flavor combination to build. Then llvmbuild
106# will invoke GNU make with -j (--jobs / --threads) to use up the
107# remaining job capacity. Once a worker is finished with a build, it
108# will pick another combination off the list and start building it.
109#
110##===----------------------------------------------------------------------===##
111
112import optparse
113import os
114import sys
115import threading
116import queue
117import logging
118import traceback
119import subprocess
120import re
121
122# TODO: Use shutil.which when it is available (3.2 or later)
123def find_executable(executable, path=None):
124 """Try to find 'executable' in the directories listed in 'path' (a
125 string listing directories separated by 'os.pathsep'; defaults to
126 os.environ['PATH']). Returns the complete filename or None if not
127 found
128 """
129 if path is None:
130 path = os.environ['PATH']
131 paths = path.split(os.pathsep)
132 extlist = ['']
133 if os.name == 'os2':
134 (base, ext) = os.path.splitext(executable)
135 # executable files on OS/2 can have an arbitrary extension, but
136 # .exe is automatically appended if no dot is present in the name
137 if not ext:
138 executable = executable + ".exe"
139 elif sys.platform == 'win32':
140 pathext = os.environ['PATHEXT'].lower().split(os.pathsep)
141 (base, ext) = os.path.splitext(executable)
142 if ext.lower() not in pathext:
143 extlist = pathext
144 for ext in extlist:
145 execname = executable + ext
146 if os.path.isfile(execname):
147 return execname
148 else:
149 for p in paths:
150 f = os.path.join(p, execname)
151 if os.path.isfile(f):
152 return f
153 else:
154 return None
155
156def is_executable(fpath):
157 return os.path.exists(fpath) and os.access(fpath, os.X_OK)
158
159def add_options(parser):
160 parser.add_option("-v", "--verbose", action="store_true",
161 default=False,
162 help=("Output informational messages"
163 " [default: %default]"))
164 parser.add_option("--src", action="append",
165 help=("Top-level source directory [default: %default]"))
166 parser.add_option("--build", action="append", default=["debug"],
167 help=("Build types to run [default: %default]"))
168 parser.add_option("--branch", action="append",
169 help=("Source branch to build [default: %default]"))
170 parser.add_option("--cc", default=find_executable("cc"),
171 help=("The C compiler to use [default: %default]"))
172 parser.add_option("--cxx", default=find_executable("c++"),
173 help=("The C++ compiler to use [default: %default]"))
174 parser.add_option("--threads", default=4, type="int",
175 help=("The number of worker threads to use "
176 "[default: %default]"))
177 parser.add_option("--jobs", "-j", default=8, type="int",
178 help=("The number of simultaneous build jobs "
179 "[default: %default]"))
180 parser.add_option("--prefix",
181 help=("Root install directory [default: %default]"))
182 parser.add_option("--builddir",
183 help=("Root build directory [default: %default]"))
184 return
185
186def check_options(parser, options, valid_builds):
187 # See if we're building valid flavors.
188 for build in options.build:
189 if (build not in valid_builds):
190 parser.error("'" + build + "' is not a valid build flavor "
191 + str(valid_builds))
192
193 # See if we can find source directories.
194 for src in options.src:
195 for component in ["llvm", "llvm-gcc", "gcc", "dragonegg"]:
196 compsrc = src + "/" + component
197 if (not os.path.isdir(compsrc)):
198 parser.error("'" + compsrc + "' does not exist")
199 if (options.branch is not None):
200 for branch in options.branch:
201 if (not os.path.isdir(os.path.join(compsrc, branch))):
202 parser.error("'" + os.path.join(compsrc, branch)
203 + "' does not exist")
204
205 # See if we can find the compilers
206 options.cc = find_executable(options.cc)
207 options.cxx = find_executable(options.cxx)
208
209 return
210
211# Find a unique short name for the given set of paths. This searches
212# back through path components until it finds unique component names
213# among all given paths.
214def get_path_abbrevs(paths):
215 # Find the number of common starting characters in the last component
216 # of the paths.
217 unique_paths = list(paths)
218
219 class NotFoundException(Exception): pass
220
221 # Find a unique component of each path.
222 unique_bases = unique_paths[:]
223 found = 0
224 while len(unique_paths) > 0:
225 bases = [os.path.basename(src) for src in unique_paths]
226 components = { c for c in bases }
227 # Account for single entry in paths.
228 if len(components) > 1 or len(components) == len(bases):
229 # We found something unique.
230 for c in components:
231 if bases.count(c) == 1:
232 index = bases.index(c)
233 unique_bases[index] = c
234 # Remove the corresponding path from the set under
235 # consideration.
236 unique_paths[index] = None
237 unique_paths = [ p for p in unique_paths if p is not None ]
238 unique_paths = [os.path.dirname(src) for src in unique_paths]
239
240 if len(unique_paths) > 0:
241 raise NotFoundException()
242
243 abbrevs = dict(zip(paths, [base for base in unique_bases]))
244
245 return abbrevs
246
247# Given a set of unique names, find a short character sequence that
248# uniquely identifies them.
249def get_short_abbrevs(unique_bases):
250 # Find a unique start character for each path base.
251 my_unique_bases = unique_bases[:]
252 unique_char_starts = unique_bases[:]
253 while len(my_unique_bases) > 0:
254 for start, char_tuple in enumerate(zip(*[base
255 for base in my_unique_bases])):
256 chars = { c for c in char_tuple }
257 # Account for single path.
258 if len(chars) > 1 or len(chars) == len(char_tuple):
259 # We found something unique.
260 for c in chars:
261 if char_tuple.count(c) == 1:
262 index = char_tuple.index(c)
263 unique_char_starts[index] = start
264 # Remove the corresponding path from the set under
265 # consideration.
266 my_unique_bases[index] = None
267 my_unique_bases = [ b for b in my_unique_bases
268 if b is not None ]
269 break
270
271 if len(my_unique_bases) > 0:
272 raise NotFoundException()
273
274 abbrevs = [abbrev[start_index:start_index+3]
275 for abbrev, start_index
276 in zip([base for base in unique_bases],
277 [index for index in unique_char_starts])]
278
279 abbrevs = dict(zip(unique_bases, abbrevs))
280
281 return abbrevs
282
283class Builder(threading.Thread):
284 class ExecutableNotFound(Exception): pass
285 class FileNotExecutable(Exception): pass
286
287 def __init__(self, work_queue, jobs, cc, cxx, build_abbrev, source_abbrev,
288 branch_abbrev, build_prefix, install_prefix):
289 super().__init__()
290 self.work_queue = work_queue
291 self.jobs = jobs
292 self.cc = cc
293 self.cxx = cxx
294 self.build_abbrev = build_abbrev
295 self.source_abbrev = source_abbrev
296 self.branch_abbrev = branch_abbrev
297 self.build_prefix = build_prefix
298 self.install_prefix = install_prefix
299 self.component_abbrev = dict(
300 llvm="llvm",
301 llvm_gcc="lgcc",
302 llvm2="llv2",
303 gcc="ugcc",
304 dagonegg="degg")
305 def run(self):
306 while True:
307 try:
308 source, branch, build = self.work_queue.get()
309 self.dobuild(source, branch, build)
310 except:
311 traceback.print_exc()
312 finally:
313 self.work_queue.task_done()
314
315 def execute(self, command, execdir, env, component):
316 prefix = self.component_abbrev[component.replace("-", "_")]
317 pwd = os.getcwd()
318 if not os.path.exists(execdir):
319 os.makedirs(execdir)
320
David Greene8b890c22011-02-22 23:30:45 +0000321 execenv = os.environ.copy()
322
David Greene8b8b4af2011-02-21 19:23:22 +0000323 for key, value in env.items():
David Greene8b890c22011-02-22 23:30:45 +0000324 execenv[key] = value
David Greene8b8b4af2011-02-21 19:23:22 +0000325
326 self.logger.debug("[" + prefix + "] " + "env " + str(env) + " "
327 + " ".join(command));
328
329 try:
330 proc = subprocess.Popen(command,
331 cwd=execdir,
David Greene8b890c22011-02-22 23:30:45 +0000332 env=execenv,
David Greene8b8b4af2011-02-21 19:23:22 +0000333 stdout=subprocess.PIPE,
334 stderr=subprocess.STDOUT)
335
336 line = proc.stdout.readline()
337 while line:
338 self.logger.info("[" + prefix + "] "
339 + str(line, "utf-8").rstrip())
340 line = proc.stdout.readline()
341
342 except:
343 traceback.print_exc()
344
David Greene8b8b4af2011-02-21 19:23:22 +0000345 # Get a list of C++ include directories to pass to clang.
346 def get_includes(self):
347 # Assume we're building with g++ for now.
348 command = [self.cxx]
349 command += ["-v", "-x", "c++", "/dev/null", "-fsyntax-only"]
350 includes = []
351 self.logger.debug(command)
352 try:
353 proc = subprocess.Popen(command,
354 stdout=subprocess.PIPE,
355 stderr=subprocess.STDOUT)
356
357 gather = False
358 line = proc.stdout.readline()
359 while line:
360 self.logger.debug(line)
361 if re.search("End of search list", str(line)) is not None:
362 self.logger.debug("Stop Gather")
363 gather = False
364 if gather:
365 includes.append(str(line, "utf-8").strip())
366 if re.search("#include <...> search starts", str(line)) is not None:
367 self.logger.debug("Start Gather")
368 gather = True
369 line = proc.stdout.readline()
370 except:
371 traceback.print_exc()
372 self.logger.debug(includes)
373 return includes
374
375 def dobuild(self, source, branch, build):
376 build_suffix = ""
377
378 ssabbrev = get_short_abbrevs([ab for ab in self.source_abbrev.values()])
379
380 if branch is not None:
381 sbabbrev = get_short_abbrevs([ab for ab in self.branch_abbrev.values()])
382
383 prefix = "[" + ssabbrev[self.source_abbrev[source]] + "-" + sbabbrev[self.branch_abbrev[branch]] + "-" + self.build_abbrev[build] + "]"
384 self.install_prefix += "/" + self.source_abbrev[source] + "/" + branch + "/" + build
385 build_suffix += self.source_abbrev[source] + "/" + branch + "/" + build
386 else:
387 prefix = "[" + ssabbrev[self.source_abbrev[source]] + "-" + self.build_abbrev[build] + "]"
388 self.install_prefix += "/" + self.source_abbrev[source] + "/" + build
389 build_suffix += "/" + self.source_abbrev[source] + "/" + build
390
391 self.logger = logging.getLogger(prefix)
392
393 self.logger.debug(self.install_prefix)
394
395 # Assume we're building with gcc for now.
396 cxxincludes = self.get_includes()
397 cxxroot = cxxincludes[0]
398 cxxarch = os.path.basename(cxxincludes[1])
399
400 configure_flags = dict(
401 llvm=dict(debug=["--prefix=" + self.install_prefix,
402 "--with-cxx-include-root=" + cxxroot,
403 "--with-cxx-include-arch=" + cxxarch],
404 release=["--prefix=" + self.install_prefix,
405 "--enable-optimized",
406 "--with-cxx-include-root=" + cxxroot,
407 "--with-cxx-include-arch=" + cxxarch],
408 paranoid=["--prefix=" + self.install_prefix,
409 "--enable-expensive-checks",
410 "--with-cxx-include-root=" + cxxroot,
411 "--with-cxx-include-arch=" + cxxarch]),
412 llvm_gcc=dict(debug=["--prefix=" + self.install_prefix,
413 "--enable-checking",
414 "--program-prefix=llvm-",
415 "--enable-llvm=" + self.build_prefix + "/llvm/" + build_suffix,
416 "--enable-languages=c,c++,fortran"],
417 release=["--prefix=" + self.install_prefix,
418 "--program-prefix=llvm-",
419 "--enable-llvm=" + self.build_prefix + "/llvm/" + build_suffix,
420 "--enable-languages=c,c++,fortran"],
421 paranoid=["--prefix=" + self.install_prefix,
422 "--enable-checking",
423 "--program-prefix=llvm-",
424 "--enable-llvm=" + self.build_prefix + "/llvm/" + build_suffix,
425 "--enable-languages=c,c++,fortran"]),
426 llvm2=dict(debug=["--prefix=" + self.install_prefix,
427 "--with-llvmgccdir=" + self.install_prefix + "/bin",
428 "--with-cxx-include-root=" + cxxroot,
429 "--with-cxx-include-arch=" + cxxarch],
430 release=["--prefix=" + self.install_prefix,
431 "--enable-optimized",
432 "--with-llvmgccdir=" + self.install_prefix + "/bin",
433 "--with-cxx-include-root=" + cxxroot,
434 "--with-cxx-include-arch=" + cxxarch],
435 paranoid=["--prefix=" + self.install_prefix,
436 "--enable-expensive-checks",
437 "--with-llvmgccdir=" + self.install_prefix + "/bin",
438 "--with-cxx-include-root=" + cxxroot,
439 "--with-cxx-include-arch=" + cxxarch]),
440 gcc=dict(debug=["--prefix=" + self.install_prefix,
441 "--enable-checking"],
442 release=["--prefix=" + self.install_prefix],
443 paranoid=["--prefix=" + self.install_prefix,
444 "--enable-checking"]),
445 dragonegg=dict(debug=[],
446 release=[],
447 paranoid=[]))
448
449 configure_env = dict(
450 llvm=dict(debug=dict(CC=self.cc,
451 CXX=self.cxx),
452 release=dict(CC=self.cc,
453 CXX=self.cxx),
454 paranoid=dict(CC=self.cc,
455 CXX=self.cxx)),
456 llvm_gcc=dict(debug=dict(CC=self.cc,
457 CXX=self.cxx),
458 release=dict(CC=self.cc,
459 CXX=self.cxx),
460 paranoid=dict(CC=self.cc,
461 CXX=self.cxx)),
462 llvm2=dict(debug=dict(CC=self.cc,
463 CXX=self.cxx),
464 release=dict(CC=self.cc,
465 CXX=self.cxx),
466 paranoid=dict(CC=self.cc,
467 CXX=self.cxx)),
468 gcc=dict(debug=dict(CC=self.cc,
469 CXX=self.cxx),
470 release=dict(CC=self.cc,
471 CXX=self.cxx),
472 paranoid=dict(CC=self.cc,
473 CXX=self.cxx)),
474 dragonegg=dict(debug=dict(CC=self.cc,
475 CXX=self.cxx),
476 release=dict(CC=self.cc,
477 CXX=self.cxx),
478 paranoid=dict(CC=self.cc,
479 CXX=self.cxx)))
480
481 make_flags = dict(
482 llvm=dict(debug=["-j" + str(self.jobs)],
483 release=["-j" + str(self.jobs)],
484 paranoid=["-j" + str(self.jobs)]),
485 llvm_gcc=dict(debug=["-j" + str(self.jobs),
486 "bootstrap"],
487 release=["-j" + str(self.jobs),
488 "bootstrap"],
489 paranoid=["-j" + str(self.jobs),
490 "bootstrap"]),
491 llvm2=dict(debug=["-j" + str(self.jobs)],
492 release=["-j" + str(self.jobs)],
493 paranoid=["-j" + str(self.jobs)]),
494 gcc=dict(debug=["-j" + str(self.jobs),
495 "bootstrap"],
496 release=["-j" + str(self.jobs),
497 "bootstrap"],
498 paranoid=["-j" + str(self.jobs),
499 "bootstrap"]),
500 dragonegg=dict(debug=["-j" + str(self.jobs)],
501 release=["-j" + str(self.jobs)],
502 paranoid=["-j" + str(self.jobs)]))
503
504 make_env = dict(
505 llvm=dict(debug=dict(),
506 release=dict(),
507 paranoid=dict()),
508 llvm_gcc=dict(debug=dict(),
509 release=dict(),
510 paranoid=dict()),
511 llvm2=dict(debug=dict(),
512 release=dict(),
513 paranoid=dict()),
514 gcc=dict(debug=dict(),
515 release=dict(),
516 paranoid=dict()),
517 dragonegg=dict(debug=dict(GCC=self.install_prefix + "/bin/gcc",
518 LLVM_CONFIG=self.install_prefix + "/bin/llvm-config"),
519 release=dict(GCC=self.install_prefix + "/bin/gcc",
520 LLVM_CONFIG=self.install_prefix + "/bin/llvm-config"),
521 paranoid=dict(GCC=self.install_prefix + "/bin/gcc",
522 LLVM_CONFIG=self.install_prefix + "/bin/llvm-config")))
523
524 make_install_flags = dict(
525 llvm=dict(debug=["install"],
526 release=["install"],
527 paranoid=["install"]),
528 llvm_gcc=dict(debug=["install"],
529 release=["install"],
530 paranoid=["install"]),
531 llvm2=dict(debug=["install"],
532 release=["install"],
533 paranoid=["install"]),
534 gcc=dict(debug=["install"],
535 release=["install"],
536 paranoid=["install"]),
537 dragonegg=dict(debug=["install"],
538 release=["install"],
539 paranoid=["install"]))
540
541 make_install_env = dict(
542 llvm=dict(debug=dict(),
543 release=dict(),
544 paranoid=dict()),
545 llvm_gcc=dict(debug=dict(),
546 release=dict(),
547 paranoid=dict()),
548 llvm2=dict(debug=dict(),
549 release=dict(),
550 paranoid=dict()),
551 gcc=dict(debug=dict(),
552 release=dict(),
553 paranoid=dict()),
554 dragonegg=dict(debug=dict(),
555 release=dict(),
556 paranoid=dict()))
557
558 make_check_flags = dict(
559 llvm=dict(debug=["check"],
560 release=["check"],
561 paranoid=["check"]),
562 llvm_gcc=dict(debug=["check"],
563 release=["check"],
564 paranoid=["check"]),
565 llvm2=dict(debug=["check"],
566 release=["check"],
567 paranoid=["check"]),
568 gcc=dict(debug=["check"],
569 release=["check"],
570 paranoid=["check"]),
571 dragonegg=dict(debug=["check"],
572 release=["check"],
573 paranoid=["check"]))
574
575 make_check_env = dict(
576 llvm=dict(debug=dict(),
577 release=dict(),
578 paranoid=dict()),
579 llvm_gcc=dict(debug=dict(),
580 release=dict(),
581 paranoid=dict()),
582 llvm2=dict(debug=dict(),
583 release=dict(),
584 paranoid=dict()),
585 gcc=dict(debug=dict(),
586 release=dict(),
587 paranoid=dict()),
588 dragonegg=dict(debug=dict(),
589 release=dict(),
590 paranoid=dict()))
591
592 for component in ["llvm", "llvm-gcc", "llvm2", "gcc", "dragonegg"]:
593 comp = component[:]
594
595 srcdir = source + "/" + comp.rstrip("2")
596 builddir = self.build_prefix + "/" + comp + "/" + build_suffix
597 installdir = self.install_prefix
598
599 if (branch is not None):
600 srcdir += "/" + branch
601
602 self.logger.info("Configuring " + component + " in " + builddir)
603 self.configure(component, srcdir, builddir,
604 configure_flags[comp.replace("-", "_")][build],
605 configure_env[comp.replace("-", "_")][build])
606
607 self.logger.info("Building " + component + " in " + builddir)
608 self.make(component, srcdir, builddir,
609 make_flags[comp.replace("-", "_")][build],
610 make_env[comp.replace("-", "_")][build])
611
612 self.logger.info("Installing " + component + " in " + installdir)
613 self.make(component, srcdir, builddir,
614 make_install_flags[comp.replace("-", "_")][build],
615 make_install_env[comp.replace("-", "_")][build])
616
617 self.logger.info("Testing " + component + " in " + builddir)
618 self.make(component, srcdir, builddir,
619 make_check_flags[comp.replace("-", "_")][build],
620 make_check_env[comp.replace("-", "_")][build])
621
622
623 def configure(self, component, srcdir, builddir, flags, env):
624 configure_files = dict(
625 llvm=[(srcdir + "/configure", builddir + "/Makefile")],
626 llvm_gcc=[(srcdir + "/configure", builddir + "/Makefile"),
627 (srcdir + "/gcc/configure", builddir + "/gcc/Makefile")],
628 llvm2=[(srcdir + "/configure", builddir + "/Makefile")],
629 gcc=[(srcdir + "/configure", builddir + "/Makefile"),
630 (srcdir + "/gcc/configure", builddir + "/gcc/Makefile")],
631 dragonegg=[()])
632
633 doconfig = False
634 for conf, mf in configure_files[component.replace("-", "_")]:
635 if os.path.exists(conf) and os.path.exists(mf):
636 confstat = os.stat(conf)
637 makestat = os.stat(mf)
638 if confstat.st_mtime > makestat.st_mtime:
639 doconfig = True
640 break
641 else:
642 doconfig = True
643 break
644
645 if not doconfig:
646 return
647
648 program = srcdir + "/configure"
649 if not is_executable(program):
650 return
651
652 args = [program]
653 args += ["--verbose"]
654 args += flags
655 self.execute(args, builddir, env, component)
656
657 def make(self, component, srcdir, builddir, flags, env):
658 program = find_executable("make")
659 if program is None:
660 raise ExecutableNotFound
661
662 if not is_executable(program):
663 raise FileNotExecutable
664
665 args = [program]
666 args += flags
667 self.execute(args, builddir, env, component)
668
669# Global constants
670build_abbrev = dict(debug="dbg", release="opt", paranoid="par")
671
672# Parse options
673parser = optparse.OptionParser(version="%prog 1.0")
674add_options(parser)
675(options, args) = parser.parse_args()
676check_options(parser, options, build_abbrev.keys());
677
678if options.verbose:
679 logging.basicConfig(level=logging.DEBUG,
680 format='%(name)-13s: %(message)s')
681else:
682 logging.basicConfig(level=logging.INFO,
683 format='%(name)-13s: %(message)s')
684
685source_abbrev = get_path_abbrevs(set(options.src))
686branch_abbrev = get_path_abbrevs(set(options.branch))
687
688work_queue = queue.Queue()
689
690for t in range(options.threads):
691 jobs = options.jobs // options.threads
692 builder = Builder(work_queue, jobs, options.cc.strip(), options.cxx.strip(),
693 build_abbrev, source_abbrev, branch_abbrev,
694 options.builddir.strip(), options.prefix.strip())
695 builder.daemon = True
696 builder.start()
697
698for build in set(options.build):
699 for source in set(options.src):
700 if options.branch is not None:
701 for branch in set(options.branch):
702 work_queue.put((source, branch, build))
703 else:
704 work_queue.put((source, None, build))
705
706work_queue.join()