mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
bpo-42029: Remove IRIX code (GH-23023)
IRIX code was slowy removed in Python 2.4 (--with-sgi-dl), Python 3.3 (Irix threads), and Python 3.7.
This commit is contained in:
parent
350526105f
commit
5776663675
4 changed files with 8 additions and 25 deletions
|
@ -524,16 +524,6 @@ def system_alias(system, release, version):
|
|||
# XXX Whatever the new SunOS marketing name is...
|
||||
system = 'Solaris'
|
||||
|
||||
elif system == 'IRIX64':
|
||||
# IRIX reports IRIX64 on platforms with 64-bit support; yet it
|
||||
# is really a version and not a different platform, since 32-bit
|
||||
# apps are also supported..
|
||||
system = 'IRIX'
|
||||
if version:
|
||||
version = version + ' (64bit)'
|
||||
else:
|
||||
version = '64bit'
|
||||
|
||||
elif system in ('win32', 'win16'):
|
||||
# In case one of the other tricks
|
||||
system = 'Windows'
|
||||
|
@ -698,9 +688,6 @@ def architecture(executable=sys.executable, bits='', linkage=''):
|
|||
# Bits
|
||||
if '32-bit' in fileout:
|
||||
bits = '32bit'
|
||||
elif 'N32' in fileout:
|
||||
# On Irix only
|
||||
bits = 'n32bit'
|
||||
elif '64-bit' in fileout:
|
||||
bits = '64bit'
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue