We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 189bd6c + 6c349ec commit a83c04eCopy full SHA for a83c04e
utils/build-windows.bat
@@ -37,10 +37,15 @@ set source_root=%current_directory%\..\..
37
cd %source_root%
38
set source_root=%CD%
39
40
-set build_root=%source_root%\build
+set full_build_root=%source_root%\build
41
set install_directory=%build_root%\Library\Developer\Toolchains\unknown-Asserts-development.xctoolchain\usr
42
43
-mkdir %build_root%
+mkdir %full_build_root%
44
+:: Use the shortest path we can for the build directory, to avoid Windows
45
+:: path problems as much as we can.
46
+subst S: /d
47
+subst S: %full_build_root% %exitOnError%
48
+set build_root=S:
49
50
call :clone_repositories %exitOnError%
51
call :download_icu %exitOnError%
0 commit comments