Lines Matching refs:archs
275 """Remove any unsupported archs from config vars"""
315 """Allow override of all archs with ARCHFLAGS env var"""
456 and detection of unavailable archs is deferred
470 # Allow user to override all archs with ARCHFLAGS env var
493 # Allow user to override all archs with ARCHFLAGS env var
538 archs = re.findall(r'-arch\s+(\S+)', cflags)
539 archs = tuple(sorted(set(archs)))
541 if len(archs) == 1:
542 machine = archs[0]
543 elif archs == ('arm64', 'x86_64'):
545 elif archs == ('i386', 'ppc'):
547 elif archs == ('i386', 'x86_64'):
549 elif archs == ('i386', 'ppc', 'x86_64'):
551 elif archs == ('ppc64', 'x86_64'):
553 elif archs == ('i386', 'ppc', 'ppc64', 'x86_64'):
557 "Don't know machine value for archs=%r" % (archs,))