Skip to content

Commit 05b61be

Browse files
committed
[build-windows] Don't download ICU
...until we want to build Foundation.
1 parent d5391d0 commit 05b61be

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

utils/build-windows.bat

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,10 @@ set RunTest=1
6868
if "%1"=="-notest" set RunTest=0
6969

7070
call :clone_repositories %exitOnError%
71-
call :download_icu %exitOnError%
71+
:: TODO: Disabled until we need Foundation in this build script.
72+
:: call :download_icu %exitOnError%
7273
:: TODO: Disabled until we need LLBuild/SwiftPM in this build script.
73-
:: call :download_sqlite3
74+
:: call :download_sqlite3 %exitOnError%
7475

7576
call :build_llvm %exitOnError%
7677
path %PATH%;%install_directory%\bin
@@ -85,7 +86,7 @@ call :build_lldb %exitOnError%
8586
path %PATH%;C:\Program Files\Git\usr\bin
8687
call :build_libdispatch %exitOnError%
8788

88-
path %source_root%\icu-%icu_version%\bin64;%install_directory%\bin;%build_root%\swift\bin;%build_root%\swift\libdispatch-prefix\bin;%PATH%
89+
path %install_directory%\bin;%build_root%\swift\bin;%build_root%\swift\libdispatch-prefix\bin;%PATH%
8990

9091
if %RunTest%==1 (
9192
call :test_swift %exitOnError%
@@ -134,8 +135,7 @@ endlocal
134135

135136

136137
:download_icu
137-
:: Downloads ICU, which will be used as a dependency for the Swift Standard
138-
:: Library and Foundation.
138+
:: Downloads ICU, which will be used as a dependency for Foundation.
139139
setlocal enableextensions enabledelayedexpansion
140140

141141
set file_name=icu4c-%icu_version%-Win64-MSVC2017.zip

0 commit comments

Comments
 (0)