@@ -195,6 +195,7 @@ $1k = [_1kiss]::new()
195
195
# x.y.z~x2.y2.z2 : range
196
196
$manifest = @ {
197
197
msvc = ' 14.39+' ; # cl.exe @link.exe 14.39 VS2022 17.9.x
198
+ vs = ' 12.0+' ;
198
199
ndk = ' r23c' ;
199
200
xcode = ' 13.0.0+' ; # range
200
201
# _EMIT_STL_ERROR(STL1000, "Unexpected compiler version, expected Clang xx.x.x or newer.");
@@ -597,7 +598,8 @@ function find_prog($name, $path = $null, $mode = 'ONLY', $cmd = $null, $params =
597
598
else {
598
599
if (! $preferredVer.Contains (' *' )) {
599
600
$checkVerCond = ' $(version_eq $foundVer $preferredVer)'
600
- } else {
601
+ }
602
+ else {
601
603
$wildcardVer = $preferredVer
602
604
$preferredVer = $wildcardVer.TrimEnd (' .*' )
603
605
$checkVerCond = ' $(version_like $foundVer $wildcardVer)'
@@ -752,6 +754,46 @@ function fetch_pkg($url, $exrep = $null) {
752
754
if ($pfn_rename ) { & $pfn_rename }
753
755
}
754
756
757
+
758
+ #
759
+ # Find latest installed: Visual Studio 12 2013 +
760
+ # installationVersion
761
+ # installationPath
762
+ # instanceId: used for EnterDevShell
763
+ # result:
764
+ # $Global:VS_INST
765
+ #
766
+ $Global :VS_INST = $null
767
+ function find_vs () {
768
+ if (! $Global :VS_INST ) {
769
+ $VSWHERE_EXE = " ${env: ProgramFiles(x86)} \Microsoft Visual Studio\Installer\vswhere.exe"
770
+ $eap = $ErrorActionPreference
771
+ $ErrorActionPreference = ' SilentlyContinue'
772
+
773
+ $required_vs_ver = $manifest [' vs' ]
774
+ if (! $required_vs_ver ) { $required_vs_ver = ' 12.0+' }
775
+
776
+ $require_comps = @ (' Microsoft.Component.MSBuild' , ' Microsoft.VisualStudio.Component.VC.Tools.x86.x64' )
777
+ $vs_installs = ConvertFrom-Json " $ ( & $VSWHERE_EXE - version $required_vs_ver.TrimEnd (' +' ) - format ' json' - requires $require_comps ) "
778
+ $ErrorActionPreference = $eap
779
+
780
+ if ($vs_installs ) {
781
+ $vs_inst_latest = $null
782
+ $vs_ver = ' '
783
+ foreach ($vs_inst in $vs_installs ) {
784
+ $inst_ver = [VersionEx ]$vs_inst.installationVersion
785
+ if ($vs_ver -lt $inst_ver ) {
786
+ $vs_ver = $inst_ver
787
+ $vs_inst_latest = $vs_inst
788
+ }
789
+ }
790
+ $Global :VS_INST = $vs_inst_latest
791
+ } else {
792
+ throw " No suitable visual studio installed, required: $required_vs_ver "
793
+ }
794
+ }
795
+ }
796
+
755
797
# setup nuget, not add to path
756
798
function setup_nuget () {
757
799
if (! $manifest [' nuget' ]) { return $null }
@@ -1231,11 +1273,12 @@ function setup_emsdk() {
1231
1273
function setup_msvc () {
1232
1274
$cl_prog , $cl_ver = find_prog - name ' msvc' - cmd ' cl' - silent $true - usefv $true
1233
1275
if (! $cl_prog ) {
1234
- if ($VS_INST ) {
1235
- Import-Module " $VS_PATH \Common7\Tools\Microsoft.VisualStudio.DevShell.dll"
1276
+ if ($Global :VS_INST ) {
1277
+ $vs_path = $Global :VS_INST.installationPath
1278
+ Import-Module " $vs_path \Common7\Tools\Microsoft.VisualStudio.DevShell.dll"
1236
1279
$dev_cmd_args = " -arch=$target_cpu -host_arch=x64 -no_logo"
1237
1280
if (! $manifest [' msvc' ].EndsWith(' +' )) { $dev_cmd_args += " -vcvars_ver=$cl_ver " }
1238
- Enter-VsDevShell - VsInstanceId $VS_INST.instanceId - SkipAutomaticLocation - DevCmdArguments $dev_cmd_args
1281
+ Enter-VsDevShell - VsInstanceId $Global : VS_INST.instanceId - SkipAutomaticLocation - DevCmdArguments $dev_cmd_args
1239
1282
1240
1283
$cl_prog , $cl_ver = find_prog - name ' msvc' - cmd ' cl' - silent $true - usefv $true
1241
1284
$1k.println (" Using msvc: $cl_prog , version: $cl_ver " )
@@ -1297,44 +1340,6 @@ function setup_gclient() {
1297
1340
$env: DEPOT_TOOLS_WIN_TOOLCHAIN = 0
1298
1341
}
1299
1342
1300
- #
1301
- # Find latest installed: Visual Studio 12 2013 +
1302
- # installationVersion
1303
- # instanceId EnterDevShell can use it
1304
- # result:
1305
- # $Global:VS_VERSION
1306
- # $Global:VS_INST
1307
- # $Global:VS_PATH
1308
- #
1309
- $Global :VS_VERSION = $null
1310
- $Global :VS_PATH = $null
1311
- $Global :VS_INST = $null
1312
- function find_vs_latest () {
1313
- $vs_version = [VersionEx ]' 12.0'
1314
- if (! $Global :VS_INST ) {
1315
- $VSWHERE_EXE = " ${env: ProgramFiles(x86)} \Microsoft Visual Studio\Installer\vswhere.exe"
1316
- $eap = $ErrorActionPreference
1317
- $ErrorActionPreference = ' SilentlyContinue'
1318
-
1319
- $vs_installs = ConvertFrom-Json " $ ( & $VSWHERE_EXE - version ' 12.0' - format ' json' ) "
1320
- $ErrorActionPreference = $eap
1321
-
1322
- if ($vs_installs ) {
1323
- $vs_inst_latest = $null
1324
- foreach ($vs_inst in $vs_installs ) {
1325
- $inst_ver = [VersionEx ]$vs_inst.installationVersion
1326
- if ($vs_version -lt $inst_ver ) {
1327
- $vs_version = $inst_ver
1328
- $vs_inst_latest = $vs_inst
1329
- }
1330
- }
1331
- $Global :VS_PATH = $vs_inst_latest.installationPath
1332
- $Global :VS_INST = $vs_inst_latest
1333
- }
1334
- }
1335
- $Global :VS_VERSION = $vs_version
1336
- }
1337
-
1338
1343
# preprocess methods:
1339
1344
# <param>-inputOptions</param> [CMAKE_OPTIONS]
1340
1345
function preprocess_win ([string []]$inputOptions ) {
@@ -1350,21 +1355,23 @@ function preprocess_win([string[]]$inputOptions) {
1350
1355
$arch = if ($options.a -eq ' x86' ) { ' Win32' } else { $options.a }
1351
1356
1352
1357
# arch
1353
- if ($VS_VERSION -ge [VersionEx ]' 16.0' ) {
1358
+ $vs_ver = [VersionEx ]$Global :VS_INST.installationVersion
1359
+ if ($vs_ver -ge [VersionEx ]' 16.0' ) {
1354
1360
$outputOptions += ' -A' , $arch
1355
1361
if ($TOOLCHAIN_VER ) {
1356
1362
$outputOptions += " -Tv$TOOLCHAIN_VER "
1357
1363
}
1358
1364
}
1359
1365
else {
1366
+ if (! $TOOLCHAIN_VER ) { $TOOLCHAIN_VER = " $ ( $vs_ver.Major ) 0" }
1360
1367
$gens = @ {
1361
1368
' 120' = ' Visual Studio 12 2013' ;
1362
1369
' 140' = ' Visual Studio 14 2015'
1363
1370
" 150" = ' Visual Studio 15 2017' ;
1364
1371
}
1365
1372
$Script :cmake_generator = $gens [$TOOLCHAIN_VER ]
1366
1373
if (! $Script :cmake_generator ) {
1367
- throw " Unsupported toolchain: $TOOLCHAIN "
1374
+ throw " Unsupported toolchain: $TOOLCHAIN$TOOLCHAIN_VER "
1368
1375
}
1369
1376
if ($options.a -eq " x64" ) {
1370
1377
$Script :cmake_generator += ' Win64'
@@ -1558,7 +1565,7 @@ $null = setup_glslcc
1558
1565
$cmake_prog , $Script :cmake_ver = setup_cmake
1559
1566
1560
1567
if ($Global :is_win_family ) {
1561
- find_vs_latest
1568
+ find_vs
1562
1569
$nuget_prog = setup_nuget
1563
1570
}
1564
1571
@@ -1614,7 +1621,8 @@ if (!$setupOnly) {
1614
1621
if ($is_host_target ) {
1615
1622
if (! $is_host_cpu ) {
1616
1623
$out_dir = " ${prefix}${TARGET_CPU} "
1617
- } else {
1624
+ }
1625
+ else {
1618
1626
$out_dir = $prefix.TrimEnd (" _" )
1619
1627
}
1620
1628
}
0 commit comments