You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: utils/build.ps1
+6-6
Original file line number
Diff line number
Diff line change
@@ -1045,9 +1045,9 @@ function Build-CMakeProject {
1045
1045
1046
1046
if ($ToBatch) {
1047
1047
Write-Output""
1048
-
Write-Output"echo Building '$Src' to '$Bin' for arch '$($Arch.LLVMName)'..."
1048
+
Write-Output"echo Building '$Src' to '$Bin' ..."
1049
1049
} else {
1050
-
Write-Host-ForegroundColor Cyan "[$([DateTime]::Now.ToString("yyyy-MM-dd HH:mm:ss"))] Building '$Src' to '$Bin' for arch '$($Arch.LLVMName)'..."
1050
+
Write-Host-ForegroundColor Cyan "[$([DateTime]::Now.ToString("yyyy-MM-dd HH:mm:ss"))] Building '$Src' to '$Bin' ..."
1051
1051
}
1052
1052
1053
1053
$Stopwatch= [Diagnostics.Stopwatch]::StartNew()
@@ -1369,7 +1369,7 @@ function Build-CMakeProject {
1369
1369
}
1370
1370
1371
1371
if (-not$ToBatch) {
1372
-
Write-Host-ForegroundColor Cyan "[$([DateTime]::Now.ToString("yyyy-MM-dd HH:mm:ss"))] Finished building '$Src' to '$Bin' for arch '$($Arch.LLVMName)' in $($Stopwatch.Elapsed)"
1372
+
Write-Host-ForegroundColor Cyan "[$([DateTime]::Now.ToString("yyyy-MM-dd HH:mm:ss"))] Finished building '$Src' to '$Bin' in $($Stopwatch.Elapsed)"
1373
1373
Write-Host""
1374
1374
}
1375
1375
@@ -1411,9 +1411,9 @@ function Build-SPMProject {
1411
1411
1412
1412
if ($ToBatch) {
1413
1413
Write-Output""
1414
-
Write-Output"echo $ActionForOutput '$Src' to '$Bin' for arch '$($Arch.LLVMName)'..."
1414
+
Write-Output"echo $ActionForOutput '$Src' to '$Bin' ..."
1415
1415
} else {
1416
-
Write-Host-ForegroundColor Cyan "[$([DateTime]::Now.ToString("yyyy-MM-dd HH:mm:ss"))] $ActionForOutput '$Src' to '$Bin' for arch '$($Arch.LLVMName)'..."
1416
+
Write-Host-ForegroundColor Cyan "[$([DateTime]::Now.ToString("yyyy-MM-dd HH:mm:ss"))] $ActionForOutput '$Src' to '$Bin' ..."
1417
1417
}
1418
1418
1419
1419
$Stopwatch= [Diagnostics.Stopwatch]::StartNew()
@@ -1461,7 +1461,7 @@ function Build-SPMProject {
1461
1461
}
1462
1462
1463
1463
if (-not$ToBatch) {
1464
-
Write-Host-ForegroundColor Cyan "[$([DateTime]::Now.ToString("yyyy-MM-dd HH:mm:ss"))] Finished building '$Src' to '$Bin' for arch '$($Arch.LLVMName)' in $($Stopwatch.Elapsed)"
1464
+
Write-Host-ForegroundColor Cyan "[$([DateTime]::Now.ToString("yyyy-MM-dd HH:mm:ss"))] Finished building '$Src' to '$Bin' in $($Stopwatch.Elapsed)"
0 commit comments