Searched refs:plat_spec (Results 1 – 12 of 12) sorted by relevance
/external/python/cpython2/Lib/distutils/tests/ |
D | test_build.py | 30 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/ |
D | test_build.py | 30 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)
|
D | test_msvccompiler.py | 24 def _find_vcvarsall(plat_spec): argument
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_build.py | 30 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)
|
D | test_msvccompiler.py | 23 def _find_vcvarsall(plat_spec): argument
|
/external/python/setuptools/setuptools/_distutils/ |
D | _msvccompiler.py | 99 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)
|
D | msvc9compiler.py | 365 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.py | 95 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)
|
D | msvc9compiler.py | 365 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/ |
D | msvc.py | 221 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/ |
D | test_msvc14.py | 22 def _find_vcvarsall(plat_spec): argument
|
/external/python/cpython2/Lib/distutils/ |
D | msvc9compiler.py | 377 plat_spec = PLAT_TO_VCVARS[plat_name] 380 plat_spec = PLAT_TO_VCVARS[get_platform()] + '_' + \ 383 vc_env = query_vcvarsall(VERSION, plat_spec)
|