Home
last modified time | relevance | path

Searched refs:plat_spec (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Lib/distutils/tests/
Dtest_build.py30 plat_spec = '.%s-%s' % (cmd.plat_name, sys.version[0:3])
33 plat_spec += '-pydebug'
34 wanted = os.path.join(cmd.build_base, 'lib' + plat_spec)
41 wanted = os.path.join(cmd.build_base, 'temp' + plat_spec)
/external/python/cpython3/Lib/distutils/tests/
Dtest_build.py30 plat_spec = '.%s-%d.%d' % (cmd.plat_name, *sys.version_info[:2])
33 plat_spec += '-pydebug'
34 wanted = os.path.join(cmd.build_base, 'lib' + plat_spec)
41 wanted = os.path.join(cmd.build_base, 'temp' + plat_spec)
Dtest_msvccompiler.py23 def _find_vcvarsall(plat_spec): argument
40 def _find_vcvarsall(plat_spec): argument
41 return old_find_vcvarsall(plat_spec)[0], None
58 def _find_vcvarsall(plat_spec): argument
59 return old_find_vcvarsall(plat_spec)[0], __file__
/external/python/cpython3/Lib/distutils/
D_msvccompiler.py92 def _find_vcvarsall(plat_spec): argument
95 vcruntime_plat = 'x64' if 'amd64' in plat_spec else 'x86'
126 def _get_vc_env(plat_spec): argument
133 vcvarsall, vcruntime = _find_vcvarsall(plat_spec)
139 'cmd /u /c "{}" {} && set'.format(vcvarsall, plat_spec),
237 plat_spec = PLAT_TO_VCVARS[plat_name]
239 vc_env = _get_vc_env(plat_spec)
Dmsvc9compiler.py366 plat_spec = PLAT_TO_VCVARS[plat_name]
369 plat_spec = PLAT_TO_VCVARS[get_platform()] + '_' + \
372 vc_env = query_vcvarsall(VERSION, plat_spec)
/external/python/cpython2/Lib/distutils/
Dmsvc9compiler.py377 plat_spec = PLAT_TO_VCVARS[plat_name]
380 plat_spec = PLAT_TO_VCVARS[get_platform()] + '_' + \
383 vc_env = query_vcvarsall(VERSION, plat_spec)
/external/python/setuptools/setuptools/
Dmsvc.py153 def msvc14_get_vc_env(plat_spec): argument
178 return get_unpatched(msvc14_get_vc_env)(plat_spec)
185 return EnvironmentInfo(plat_spec, vc_min_ver=14.0).return_env()