Lines Matching refs:configs
116 self.configs = {}
462 if cfg.name in self.configs:
465 self.configs[cfg.name] = cfg
505 def run_builds(self, action, configs): argument
508 self.checkout(configs)
511 if configs:
517 if configs:
523 'list-glibcs') and configs:
527 for name in sorted(self.configs.keys()):
547 self.build_compilers(configs)
554 self.update_syscalls(configs)
556 self.build_glibcs(configs)
559 if configs:
727 def build_compilers(self, configs): argument
729 if not configs:
733 configs = sorted(self.configs.keys())
734 for c in configs:
735 self.configs[c].build()
737 def build_glibcs(self, configs): argument
739 if not configs:
743 configs = sorted(self.glibc_configs.keys())
744 for c in configs:
747 def update_syscalls(self, configs): argument
749 if not configs:
752 configs = sorted(self.glibc_configs.keys())
753 for c in configs:
1868 ctx.run_builds(opts.action, opts.configs)