mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
Remove all mention of Windows IA-64 support (GH-3389)
It was mostly removed long ago.
This commit is contained in:
parent
effc12f8e9
commit
49ce74efe8
13 changed files with 12 additions and 66 deletions
|
@ -55,7 +55,6 @@ else:
|
|||
PLAT_TO_VCVARS = {
|
||||
'win32' : 'x86',
|
||||
'win-amd64' : 'amd64',
|
||||
'win-ia64' : 'ia64',
|
||||
}
|
||||
|
||||
class Reg:
|
||||
|
@ -344,7 +343,7 @@ class MSVCCompiler(CCompiler) :
|
|||
if plat_name is None:
|
||||
plat_name = get_platform()
|
||||
# sanity check for platforms to prevent obscure errors later.
|
||||
ok_plats = 'win32', 'win-amd64', 'win-ia64'
|
||||
ok_plats = 'win32', 'win-amd64'
|
||||
if plat_name not in ok_plats:
|
||||
raise DistutilsPlatformError("--plat-name must be one of %s" %
|
||||
(ok_plats,))
|
||||
|
@ -362,7 +361,6 @@ class MSVCCompiler(CCompiler) :
|
|||
# to cross compile, you use 'x86_amd64'.
|
||||
# On AMD64, 'vcvars32.bat amd64' is a native build env; to cross
|
||||
# compile use 'x86' (ie, it runs the x86 compiler directly)
|
||||
# No idea how itanium handles this, if at all.
|
||||
if plat_name == get_platform() or plat_name == 'win32':
|
||||
# native build or cross-compile to win32
|
||||
plat_spec = PLAT_TO_VCVARS[plat_name]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue