Home
last modified time | relevance | path

Searched full:vswhere (Results 1 – 10 of 10) sorted by relevance

/external/skia/gn/
Dfind_msvc.py23 # Fall back to vswhere.exe to determine non-standard installation paths
24 # Fixed location, https://github.com/Microsoft/vswhere/wiki/Installing
25 vswhere = os.path.join(os.getenv('ProgramFiles(x86)'),
26 'Microsoft Visual Studio', 'Installer', 'vswhere.exe')
27 command = (vswhere + ' -prerelease -legacy -products * -sort -utf8 '
/external/python/cpython3/PCbuild/
Dfind_msbuild.bat32 @rem VS 2017 and later provide vswhere.exe, which can be used
33 @if not exist "%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" goto :skip_vswhere
35 @for /F "tokens=*" %%i in ('"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" -pr…
Denv.bat15 if not exist "%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" goto :skip_vswhere
17 for /F "tokens=*" %%i in ('"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" -pro…
Dprepare_libffi.bat74 …for /F "tokens=*" %%i in ('"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" -pr…
/external/python/cpython3/.azure-pipelines/
Dfind-tools.yml9 $vcvarsall = (& "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe" `
19 $msbuild = (& "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe" `
/external/mesa3d/.gitlab-ci/windows/
Dmesa_init_msvc.ps11 $vsInstallPath=& "C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe" -version 16…
2 Write-Output "vswhere.exe installPath: $vsInstallPath"
/external/python/setuptools/setuptools/_distutils/
D_msvccompiler.py61 """Returns "15, path" based on the result of invoking vswhere.exe
67 If vswhere.exe is not available, by definition, VS 2017 is not
76 os.path.join(root, "Microsoft Visual Studio", "Installer", "vswhere.exe"),
/external/python/cpython3/Lib/distutils/
D_msvccompiler.py57 """Returns "15, path" based on the result of invoking vswhere.exe
63 If vswhere.exe is not available, by definition, VS 2017 is not
72 os.path.join(root, "Microsoft Visual Studio", "Installer", "vswhere.exe"),
/external/python/setuptools/setuptools/
Dmsvc.py179 Returns "15, path" based on the result of invoking vswhere.exe
185 If vswhere.exe is not available, by definition, VS 2017 is not
194 join(root, "Microsoft Visual Studio", "Installer", "vswhere.exe"),
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a1.rst7703 Remove _distutils_findvs module and use vswhere.exe instead.