Lines Matching refs:arch
121 self.arch = Opt.arch.lower()
123 if self.arch not in allowedArchs:
128 self.target_arch = {'ia32': 'i686', 'x64': 'x86_64', 'ipf': 'ia64'}[self.arch]
129 self.target_sys = {'ia32': 'pc', 'x64': 'pc', 'ipf': 'pc'}[self.arch]
130 self.target_bin = {'ia32': 'mingw32', 'x64': 'mingw32', 'ipf': 'elf'}[self.arch]
168 if self.arch.lower() == 'ipf':
200 self.source_files = self.source_files[config.arch]
244 for arch in source_files:
246 for source_files_dict in source_files[arch]:
268 source_files[arch] = mergedSourceFiles
387 extractDst = os.path.join(src, self.config.arch)
432 self.config.build_dir, self.config.arch, step + '.completed'
439 self.config.build_dir, self.config.arch, step + '.completed'
447 build_dir = os.path.join(self.config.build_dir, self.config.arch, module)
449 module_dir = os.path.realpath(os.path.join('src', self.config.arch, module_dir))
518 links_dir = os.path.join(self.config.symlinks, self.config.arch)