Skip to content

Commit c14e2b2

Browse files
committed
WIP
1 parent 844d103 commit c14e2b2

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

utils/build-windows-toolchain.bat

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
setlocal enableextensions enabledelayedexpansion
1212

13+
SET
14+
1315
:: Work around CI invocation in vsdevcmd
1416
:: The build relies on build.ps1, which should not be called in a vs dev cmd
1517
if "%VSCMD_ARG_HOST_ARCH%"=="" goto Start
@@ -57,10 +59,10 @@ set TEMP=%BuildRoot%\tmp
5759
set TMP=%BuildRoot%\tmp
5860
set TMPDIR=%BuildRoot%\tmp
5961

60-
set NINJA_STATUS=[%%f/%%t][%%p][%%es]
62+
set NINJA_STATUS=[%%f/%%t][%%p][%%es]
6163

6264
:: Build the -Test argument, if any, by subtracting skipped tests
63-
set TestArg=-Test lld,swift,dispatch,foundation,xctest,
65+
set TestArg=-Test lld,swift,dispatch,foundation,xctest,swift-format,
6466
for %%I in (%SKIP_TESTS%) do (call set TestArg=%%TestArg:%%I,=%%)
6567
if "%TestArg:~-1%"=="," (set TestArg=%TestArg:~0,-1%) else (set TestArg= )
6668

utils/build.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1251,7 +1251,8 @@ function Build-SPMProject {
12511251
"-Xbuild-tools-swiftc", "-I$SDKInstallRoot\usr\lib\swift",
12521252
"-Xbuild-tools-swiftc", "-L$SDKInstallRoot\usr\lib\swift\windows",
12531253
"-Xcc", "-I$SDKInstallRoot\usr\lib\swift",
1254-
"-Xlinker", "-L$SDKInstallRoot\usr\lib\swift\windows"
1254+
"-Xlinker", "-L$SDKInstallRoot\usr\lib\swift\windows",
1255+
"--verbose"
12551256
)
12561257
if ($DebugInfo) {
12571258
if ($SwiftDebugFormat -eq "dwarf") {

utils/update_checkout/update_checkout/update_checkout.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,8 @@ def run_for_repo_and_each_submodule_rec(cmd):
244244
full_target = full_target_name('origin', checkout_target)
245245
shell.run(['git', 'reset', '--hard', full_target],
246246
echo=True, prefix=prefix)
247+
shell.run(['git', 'status'],
248+
echo=True, prefix=prefix)
247249
return
248250

249251
# Query whether we have a "detached HEAD", which will mean that

0 commit comments

Comments
 (0)