Lines Matching full:branch
71 # 4.5 branch as discussed in the dragonegg build guide.
86 # --src=~/llvm/official --branch=trunk --branch=tags/RELEASE_28
93 # install directories for each source/branch/build flavor. In the
105 # pick a source/branch/flavor combination to build. Then llvmbuild
168 parser.add_option("--branch", action="append",
169 help=("Source branch to build [default: %default]"))
212 if (options.branch is not None):
213 for branch in options.branch:
214 if (not os.path.isdir(os.path.join(compsrc, branch))):
215 parser.error("'" + os.path.join(compsrc, branch)
323 source, branch, build = self.work_queue.get()
324 self.dobuild(source, branch, build)
390 def dobuild(self, source, branch, build):
395 if branch is not None:
398 prefix = "[" + ssabbrev[self.source_abbrev[source]] + "-" + sbabbrev[self.branch_abbrev[branch]] + "-" + self.build_abbrev[build] + "]"
399 self.install_prefix += "/" + self.source_abbrev[source] + "/" + branch + "/" + build
400 build_suffix += self.source_abbrev[source] + "/" + branch + "/" + build
640 if (branch is not None):
641 srcdir += "/" + branch
748 if options.branch is not None:
749 branch_abbrev = get_path_abbrevs(set(options.branch))
772 if options.branch is not None:
773 for branch in set(options.branch):
774 work_queue.put((source, branch, build))