Home
last modified time | relevance | path

Searched refs:plat_spec (Results 1 – 12 of 12) 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/setuptools/setuptools/_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.py24 def _find_vcvarsall(plat_spec): argument
/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
/external/python/setuptools/setuptools/_distutils/
D_msvccompiler.py99 def _find_vcvarsall(plat_spec): argument
117 def _get_vc_env(plat_spec): argument
124 vcvarsall, _ = _find_vcvarsall(plat_spec)
130 'cmd /u /c "{}" {} && set'.format(vcvarsall, plat_spec),
222 plat_spec = PLAT_TO_VCVARS[plat_name]
224 vc_env = _get_vc_env(plat_spec)
Dmsvc9compiler.py365 plat_spec = PLAT_TO_VCVARS[plat_name]
368 plat_spec = PLAT_TO_VCVARS[get_platform()] + '_' + \
371 vc_env = query_vcvarsall(VERSION, plat_spec)
/external/python/cpython3/Lib/distutils/
D_msvccompiler.py95 def _find_vcvarsall(plat_spec): argument
113 def _get_vc_env(plat_spec): argument
120 vcvarsall, _ = _find_vcvarsall(plat_spec)
126 'cmd /u /c "{}" {} && set'.format(vcvarsall, plat_spec),
218 plat_spec = PLAT_TO_VCVARS[plat_name]
220 vc_env = _get_vc_env(plat_spec)
Dmsvc9compiler.py365 plat_spec = PLAT_TO_VCVARS[plat_name]
368 plat_spec = PLAT_TO_VCVARS[get_platform()] + '_' + \
371 vc_env = query_vcvarsall(VERSION, plat_spec)
/external/python/setuptools/setuptools/
Dmsvc.py221 def _msvc14_find_vcvarsall(plat_spec): argument
226 if plat_spec in PLAT_SPEC_TO_RUNTIME:
227 vcruntime_plat = PLAT_SPEC_TO_RUNTIME[plat_spec]
229 vcruntime_plat = 'x64' if 'amd64' in plat_spec else 'x86'
260 def _msvc14_get_vc_env(plat_spec): argument
268 vcvarsall, vcruntime = _msvc14_find_vcvarsall(plat_spec)
276 'cmd /u /c "{}" {} && set'.format(vcvarsall, plat_spec),
296 def msvc14_get_vc_env(plat_spec): argument
316 return _msvc14_get_vc_env(plat_spec)
/external/python/setuptools/setuptools/tests/
Dtest_msvc14.py22 def _find_vcvarsall(plat_spec): argument
/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)