Merge pull request #13075 from stephentoub/string_span_ctor
[platform/upstream/coreclr.git] / build-test.cmd
1 @if not defined _echo @echo off
2 setlocal EnableDelayedExpansion
3
4 :: Set the default arguments for build
5 set __BuildArch=x64
6 set __VCBuildArch=x86_amd64
7 set __BuildType=Debug
8 set __BuildOS=Windows_NT
9
10 :: Default to highest Visual Studio version available
11 ::
12 :: For VS2015 (and prior), only a single instance is allowed to be installed on a box
13 :: and VS140COMNTOOLS is set as a global environment variable by the installer. This
14 :: allows users to locate where the instance of VS2015 is installed.
15 ::
16 :: For VS2017, multiple instances can be installed on the same box SxS and VS150COMNTOOLS
17 :: is no longer set as a global environment variable and is instead only set if the user
18 :: has launched the VS2017 Developer Command Prompt.
19 ::
20 :: Following this logic, we will default to the VS2017 toolset if VS150COMNTOOLS tools is
21 :: set, as this indicates the user is running from the VS2017 Developer Command Prompt and
22 :: is already configured to use that toolset. Otherwise, we will fallback to using the VS2015
23 :: toolset if it is installed. Finally, we will fail the script if no supported VS instance
24 :: can be found.
25 if defined VS150COMNTOOLS (
26   set "__VSToolsRoot=%VS150COMNTOOLS%"
27   set "__VCToolsRoot=%VS150COMNTOOLS%\..\..\VC\Auxiliary\Build"
28   set __VSVersion=vs2017
29 ) else (
30   set "__VSToolsRoot=%VS140COMNTOOLS%"
31   set "__VCToolsRoot=%VS140COMNTOOLS%\..\..\VC"
32   set __VSVersion=vs2015
33 )
34
35 :: Define a prefix for most output progress messages that come from this script. That makes
36 :: it easier to see where these are coming from. Note that there is a trailing space here.
37 set __MsgPrefix=BUILDTEST: 
38
39 set "__ProjectDir=%~dp0"
40 :: remove trailing slash
41 if %__ProjectDir:~-1%==\ set "__ProjectDir=%__ProjectDir:~0,-1%"
42 set "__TestDir=%__ProjectDir%\tests"
43 set "__ProjectFilesDir=%__TestDir%"
44 set "__SourceDir=%__ProjectDir%\src"
45 set "__PackagesDir=%__ProjectDir%\packages"
46 set "__RootBinDir=%__ProjectDir%\bin"
47 set "__LogsDir=%__RootBinDir%\Logs"
48
49 :: Default __Exclude to issues.targets
50 set __Exclude=%__TestDir%\issues.targets
51
52 REM __unprocessedBuildArgs are args that we pass to msbuild (e.g. /p:__BuildArch=x64)
53 set "__args= %*"
54 set processedArgs=
55 set __unprocessedBuildArgs=
56 set __RunArgs=
57 set __BuildAgainstPackagesArg=
58 set __RuntimeId=
59 set __ZipTests=
60 set __TargetsWindows=1
61 set __DoCrossgen=
62
63 :Arg_Loop
64 if "%1" == "" goto ArgsDone
65
66 if /i "%1" == "-?"    goto Usage
67 if /i "%1" == "-h"    goto Usage
68 if /i "%1" == "-help" goto Usage
69
70 if /i "%1" == "x64"                   (set __BuildArch=x64&set __VCBuildArch=x86_amd64&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
71 if /i "%1" == "x86"                   (set __BuildArch=x86&set __VCBuildArch=x86&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
72 if /i "%1" == "arm"                   (set __BuildArch=arm&set __VCBuildArch=x86_arm&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
73 if /i "%1" == "arm64"                 (set __BuildArch=arm64&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
74
75 if /i "%1" == "debug"                 (set __BuildType=Debug&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
76 if /i "%1" == "release"               (set __BuildType=Release&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
77 if /i "%1" == "checked"               (set __BuildType=Checked&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
78
79 if /i "%1" == "skipmanaged"           (set __SkipManaged=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
80 if /i "%1" == "toolset_dir"           (set __ToolsetDir=%2&set __PassThroughArgs=%__PassThroughArgs% %2&set processedArgs=!processedArgs! %1 %2&shift&shift&goto Arg_Loop)
81 if /i "%1" == "buildagainstpackages"  (set __ZipTests=1&set __BuildAgainstPackagesArg=-BuildTestsAgainstPackages&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
82 if /i "%1" == "ziptests"              (set __ZipTests=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
83 if /i "%1" == "crossgen"              (set __DoCrossgen=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
84 if /i "%1" == "runtimeid"             (set __RuntimeId=%2&set processedArgs=!processedArgs! %1 %2&shift&shift&goto Arg_Loop)
85 if /i "%1" == "targetsNonWindows"     (set __TargetsWindows=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
86 if /i "%1" == "Exclude"               (set __Exclude=%2&set processedArgs=!processedArgs! %1 %2&shift&shift&goto Arg_Loop)
87
88 if [!processedArgs!]==[] (
89   call set __UnprocessedBuildArgs=!__args!
90 ) else (
91   call set __UnprocessedBuildArgs=%%__args:*!processedArgs!=%%
92 )
93
94 :ArgsDone
95
96 if defined __BuildAgainstPackagesArg (
97     if not defined __RuntimeID (
98         echo %__MsgPrefix%Error: When building against packages, you must supply a target Runtime ID.
99         exit /b 1
100     )
101 )
102
103 echo %__MsgPrefix%Using environment: "%__VSToolsRoot%\VsDevCmd.bat"
104 call                                 "%__VSToolsRoot%\VsDevCmd.bat"
105
106 set __RunArgs=-BuildOS=%__BuildOS% -BuildType=%__BuildType% -BuildArch=%__BuildArch%
107
108 rem arm64 builds currently use private toolset which has not been released yet
109 REM TODO, remove once the toolset is open.
110 if /i "%__BuildArch%" == "arm64" call :PrivateToolSet
111
112 echo %__MsgPrefix%Commencing CoreCLR repo test build
113
114 set "__BinDir=%__RootBinDir%\Product\%__BuildOS%.%__BuildArch%.%__BuildType%"
115 set "__TestRootDir=%__RootBinDir%\tests"
116 set "__TestBinDir=%__TestRootDir%\%__BuildOS%.%__BuildArch%.%__BuildType%"
117 :: We have different managed and native intermediate dirs because the managed bits will include
118 :: the configuration information deeper in the intermediates path.
119 :: These variables are used by the msbuild project files.
120
121 if not defined __TestIntermediateDir (
122     set "__TestIntermediateDir=tests\obj\%__BuildOS%.%__BuildArch%.%__BuildType%"
123 )
124 set "__NativeTestIntermediatesDir=%__RootBinDir%\%__TestIntermediateDir%\Native"
125 set "__ManagedTestIntermediatesDir=%__RootBinDir%\%__TestIntermediateDir%\Managed"
126
127 :: Generate path to be set for CMAKE_INSTALL_PREFIX to contain forward slash
128 set "__CMakeBinDir=%__TestBinDir%"
129 set "__CMakeBinDir=%__CMakeBinDir:\=/%"
130
131 if not exist "%__TestBinDir%"                   md "%__TestBinDir%"
132 if not exist "%__NativeTestIntermediatesDir%"   md "%__NativeTestIntermediatesDir%"
133 if not exist "%__ManagedTestIntermediatesDir%"  md "%__ManagedTestIntermediatesDir%"
134 if not exist "%__LogsDir%"                      md "%__LogsDir%"
135
136 echo %__MsgPrefix%Checking prerequisites
137
138 :: Eval the output from probe-win1.ps1
139 for /f "delims=" %%a in ('powershell -NoProfile -ExecutionPolicy ByPass "& ""%__SourceDir%\pal\tools\probe-win.ps1"""') do %%a
140
141 REM =========================================================================================
142 REM ===
143 REM === Restore Build Tools
144 REM ===
145 REM =========================================================================================
146 call "%__ProjectDir%\init-tools.cmd"
147
148 REM =========================================================================================
149 REM ===
150 REM === Resolve runtime dependences
151 REM ===
152 REM =========================================================================================
153
154 call "%__TestDir%\setup-stress-dependencies.cmd" /arch %__BuildArch% /outputdir %__BinDir%
155
156 REM =========================================================================================
157 REM ===
158 REM === Native test build section
159 REM ===
160 REM =========================================================================================
161
162 echo %__MsgPrefix%Commencing build of native test components for %__BuildArch%/%__BuildType%
163
164 if defined __ToolsetDir (
165  echo %__MsgPrefix%ToolsetDir is defined to be :%__ToolsetDir%
166  goto GenVSSolution :: Private ToolSet is Defined
167 )
168
169 :: Set the environment for the native build
170 echo %__MsgPrefix%Using environment: "%__VCToolsRoot%\vcvarsall.bat" %__VCBuildArch%
171 call                                 "%__VCToolsRoot%\vcvarsall.bat" %__VCBuildArch%
172 @if defined _echo @echo on
173
174 if not defined VSINSTALLDIR (
175     echo %__MsgPrefix%Error: VSINSTALLDIR variable not defined.
176     exit /b 1
177 )
178 if not exist "%VSINSTALLDIR%DIA SDK" goto NoDIA
179
180 :GenVSSolution
181
182 pushd "%__NativeTestIntermediatesDir%"
183 call "%__SourceDir%\pal\tools\gen-buildsys-win.bat" ""%__ProjectFilesDir%"" %__VSVersion% %__BuildArch%
184 @if defined _echo @echo on
185 popd
186
187 if not exist "%__NativeTestIntermediatesDir%\install.vcxproj" (
188     echo %__MsgPrefix%Failed to generate test native component build project!
189     exit /b 1
190 )
191
192 set __msbuildNativeArgs=-configuration=%__BuildType%
193
194 if defined __ToolsetDir (
195     set __msbuildNativeArgs=%__msbuildNativeArgs% -UseEnv
196 ) else (
197     set __msbuildNativeArgs=%__msbuildNativeArgs% -platform=%__BuildArch%
198 )
199
200 set __BuildLogRootName=Tests_Native
201 set __BuildLog=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.log
202 set __BuildWrn=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn
203 set __BuildErr=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.err
204 set __msbuildLog=/flp:Verbosity=normal;LogFile="%__BuildLog%"
205 set __msbuildWrn=/flp1:WarningsOnly;LogFile="%__BuildWrn%"
206 set __msbuildErr=/flp2:ErrorsOnly;LogFile="%__BuildErr%"
207
208 call "%__ProjectDir%\run.cmd" build -Project="%__NativeTestIntermediatesDir%\install.vcxproj" -MsBuildLog=!__msbuildLog! -MsBuildWrn=!__msbuildWrn! -MsBuildErr=!__msbuildErr! %__msbuildNativeArgs% %__RunArgs% %__unprocessedBuildArgs%
209 if errorlevel 1 (
210     echo %__MsgPrefix%Error: build failed. Refer to the build log files for details:
211     echo     %__BuildLog%
212     echo     %__BuildWrn%
213     echo     %__BuildErr%
214     exit /b 1
215 )
216
217 :skipnative
218
219 set __BuildLogRootName=Restore_Product
220 set __BuildLog=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.log
221 set __BuildWrn=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn
222 set __BuildErr=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.err
223 set __msbuildLog=/flp:Verbosity=normal;LogFile="%__BuildLog%"
224 set __msbuildWrn=/flp1:WarningsOnly;LogFile="%__BuildWrn%"
225 set __msbuildErr=/flp2:ErrorsOnly;LogFile="%__BuildErr%"
226
227 set "__TestWorkingDir=%__RootBinDir%\tests\%__BuildOS%.%__BuildArch%.%__BuildType%"
228
229 if not defined __BuildAgainstPackagesArg goto SkipRestoreProduct
230 REM =========================================================================================
231 REM ===
232 REM === Restore product binaries from packages
233 REM ===
234 REM =========================================================================================
235
236 if not defined XunitTestBinBase       set  XunitTestBinBase=%__TestWorkingDir%
237 set "CORE_ROOT=%XunitTestBinBase%\Tests\Core_Root"
238
239 call "%__ProjectDir%\run.cmd" build -Project=%__ProjectDir%\tests\build.proj -BatchRestorePackages -MsBuildLog=!__msbuildLog! -MsBuildWrn=!__msbuildWrn! -MsBuildErr=!__msbuildErr! %__RunArgs% %__BuildAgainstPackagesArg% %__unprocessedBuildArgs%
240
241 set __BuildLogRootName=Tests_GenerateRuntimeLayout
242
243 call "%__ProjectDir%\run.cmd" build -Project=%__ProjectDir%\tests\runtest.proj -BinPlaceRef -BinPlaceProduct -CopyCrossgenToProduct -RuntimeId="%__RuntimeId%" -MsBuildLog=!__msbuildLog! -MsBuildWrn=!__msbuildWrn! -MsBuildErr=!__msbuildErr! %__RunArgs% %__BuildAgainstPackagesArg% %__unprocessedBuildArgs%
244 if errorlevel 1 (
245     echo BinPlace of mscorlib.dll failed
246     exit /b 1
247 )
248
249 echo %__MsgPrefix% Restored CoreCLR product from packages
250
251 :SkipRestoreProduct
252
253 if defined __SkipManaged exit /b 0
254
255 set __BuildLogRootName=Tests_Managed
256 set __BuildLog=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.log
257 set __BuildWrn=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn
258 set __BuildErr=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.err
259 set __msbuildLog=/flp:Verbosity=normal;LogFile="%__BuildLog%"
260 set __msbuildWrn=/flp1:WarningsOnly;LogFile="%__BuildWrn%"
261 set __msbuildErr=/flp2:ErrorsOnly;LogFile="%__BuildErr%"
262
263 REM =========================================================================================
264 REM ===
265 REM === Managed test build section
266 REM ===
267 REM =========================================================================================
268
269 echo %__MsgPrefix%Starting the Managed Tests Build
270
271 if not defined VSINSTALLDIR (
272     echo %__MsgPrefix%Error: buildtest.cmd should be run from a Visual Studio Command Prompt.  Please see https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md for build instructions.
273     exit /b 1
274 )
275
276 call "%__ProjectDir%\run.cmd" build -Project=%__ProjectDir%\tests\build.proj -MsBuildLog=!__msbuildLog! -MsBuildWrn=!__msbuildWrn! -MsBuildErr=!__msbuildErr! %__RunArgs% %__BuildAgainstPackagesArg% %__unprocessedBuildArgs%
277 if errorlevel 1 (
278     echo %__MsgPrefix%Error: build failed. Refer to the build log files for details:
279     echo     %__BuildLog%
280     echo     %__BuildWrn%
281     echo     %__BuildErr%
282     exit /b 1
283 )
284
285 REM Prepare the Test Drop
286 REM Cleans any NI from the last run
287 powershell "Get-ChildItem -path %__TestWorkingDir% -Include '*.ni.*' -Recurse -Force | Remove-Item -force"
288 REM Cleans up any lock folder used for synchronization from last run
289 powershell "Get-ChildItem -path %__TestWorkingDir% -Include 'lock' -Recurse -Force |  where {$_.Attributes -eq 'Directory'}| Remove-Item -force -Recurse"
290
291 set CORE_ROOT=%__TestBinDir%\Tests\Core_Root
292 set CORE_ROOT_STAGE=%__TestBinDir%\Tests\Core_Root_Stage
293 if exist "%CORE_ROOT%" rd /s /q "%CORE_ROOT%"
294 if exist "%CORE_ROOT_STAGE%" rd /s /q "%CORE_ROOT_STAGE%"
295 md "%CORE_ROOT%"
296 md "%CORE_ROOT_STAGE%"
297 xcopy "%__BinDir%" "%CORE_ROOT_STAGE%"
298
299
300 if defined __BuildAgainstPackagesArg ( 
301   if "%__TargetsWindows%"=="0" (
302
303     if not exist %__PackagesDir%\TestNativeBins (
304         echo %__MsgPrefix%Error: Ensure you have run sync.cmd -ab before building a non-Windows test overlay against packages
305         exit /b 1
306     )
307
308     for /R %__PackagesDir%\TestNativeBins\%__RuntimeId%\%__BuildType% %%f in (*.so) do copy %%f %CORE_ROOT_STAGE%
309     for /R %__PackagesDir%\TestNativeBins\%__RuntimeId%\%__BuildType% %%f in (*.dylib) do copy %%f %CORE_ROOT_STAGE%
310   )
311 )
312
313 echo %__MsgPrefix%Creating test wrappers...
314
315 set RuntimeIdArg=
316 set TargetsWindowsArg=
317
318 if defined __RuntimeId (
319     set RuntimeIdArg=-RuntimeID="%__RuntimeId%"
320 )
321
322 if "%__TargetsWindows%"=="1" (
323     set TargetsWindowsArg=-TargetsWindows=true
324 ) else if "%__TargetsWindows%"=="0" (
325     set TargetsWindowsArg=-TargetsWindows=false
326 )
327
328 set __BuildLogRootName=Tests_XunitWrapper
329 set __BuildLog=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.log
330 set __BuildWrn=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn
331 set __BuildErr=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.err
332 set __msbuildLog=/flp:Verbosity=normal;LogFile="%__BuildLog%"
333 set __msbuildWrn=/flp1:WarningsOnly;LogFile="%__BuildWrn%"
334 set __msbuildErr=/flp2:ErrorsOnly;LogFile="%__BuildErr%"
335
336 call %__ProjectDir%\run.cmd build -Project=%__ProjectDir%\tests\runtest.proj -BuildWrappers -MsBuildEventLogging=" " -MsBuildLog=!__msbuildLog! -MsBuildWrn=!__msbuildWrn! -MsBuildErr=!__msbuildErr! %__RunArgs% %__BuildAgainstPackagesArg% %TargetsWindowsArg% %__unprocessedBuildArgs%
337 if errorlevel 1 (
338     echo Xunit Wrapper build failed
339     exit /b 1
340 )
341
342 echo %__MsgPrefix%Creating test overlay...
343
344 set __BuildLogRootName=Tests_Overlay_Managed
345 set __BuildLog=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.log
346 set __BuildWrn=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn
347 set __BuildErr=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.err
348 set __msbuildLog=/flp:Verbosity=normal;LogFile="%__BuildLog%"
349 set __msbuildWrn=/flp1:WarningsOnly;LogFile="%__BuildWrn%"
350 set __msbuildErr=/flp2:ErrorsOnly;LogFile="%__BuildErr%"
351
352 call %__ProjectDir%\run.cmd build -Project=%__ProjectDir%\tests\runtest.proj -testOverlay -MsBuildLog=!__msbuildLog! -MsBuildWrn=!__msbuildWrn! -MsBuildErr=!__msbuildErr! %__RunArgs% %RuntimeIdArg% %__unprocessedBuildArgs%
353 if errorlevel 1 (
354     echo %__MsgPrefix%Error: build failed. Refer to the build log files for details:
355     echo     %__BuildLog%
356     echo     %__BuildWrn%
357     echo     %__BuildErr%
358     exit /b 1
359 )
360
361 xcopy /s /y "%CORE_ROOT_STAGE%" "%CORE_ROOT%"
362
363 set __CrossgenArg = ""
364 if defined __DoCrossgen (
365   set __CrossgenArg="-Crossgen"
366   if "%__TargetsWindows%" == "1" (
367     call :PrecompileFX
368   ) else (
369     echo "%__MsgPrefix% Crossgen only supported on Windows, for now"
370   )
371 )
372
373 rd /s /q "%CORE_ROOT_STAGE%"
374
375 if not defined __ZipTests goto SkipPrepForPublish
376
377 set __BuildLogRootName=Helix_Prep
378 set __BuildLog=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.log
379 set __BuildWrn=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.wrn
380 set __BuildErr=%__LogsDir%\%__BuildLogRootName%_%__BuildOS%__%__BuildArch%__%__BuildType%.err
381 set __msbuildLog=/flp:Verbosity=normal;LogFile="%__BuildLog%"
382 set __msbuildWrn=/flp1:WarningsOnly;LogFile="%__BuildWrn%"
383 set __msbuildErr=/flp2:ErrorsOnly;LogFile="%__BuildErr%"
384
385 REM =========================================================================================
386 REM ===
387 REM === Prep test binaries for Helix publishing
388 REM ===
389 REM =========================================================================================
390
391 call %__ProjectDir%\run.cmd build -Project=%__ProjectDir%\tests\helixprep.proj  -MsBuildLog=!__msbuildLog! -MsBuildWrn=!__msbuildWrn! -MsBuildErr=!__msbuildErr! %__RunArgs% %__BuildAgainstPackagesArg% %RuntimeIdArg% %TargetsWindowsArg% %__CrossgenArg% %__unprocessedBuildArgs%
392 if errorlevel 1 (
393     echo %__MsgPrefix%Error: build failed. Refer to the build log files for details:
394     echo     %__BuildLog%
395     echo     %__BuildWrn%
396     echo     %__BuildErr%
397     exit /b 1
398 )
399
400 echo %__MsgPrefix% Prepped test binaries for publishing
401
402 :SkipPrepForPublish
403
404 REM =========================================================================================
405 REM ===
406 REM === All builds complete!
407 REM ===
408 REM =========================================================================================
409
410 echo %__MsgPrefix%Test build successful.
411 echo %__MsgPrefix%Test binaries are available at !__TestBinDir!
412 exit /b 0
413
414 :Usage
415 echo.
416 echo Usage:
417 echo     %0 [option1] [option2] ...
418 echo All arguments are optional. Options are case-insensitive. The options are:
419 echo.
420 echo. -? -h -help: view this message.
421 echo Build architecture: -buildArch: only x64 is currently allowed ^(default: x64^).
422 echo Build type: -buildType: one of Debug, Checked, Release ^(default: Debug^).
423 echo buildagainstpackages: builds tests against restored packages, instead of against a built product.
424 echo runtimeid ^<ID^>: Builds a test overlay for the specified OS (Only supported when building against packages). Supported IDs are:
425 echo     alpine.3.4.3-x64: Builds overlay for Alpine 3.4.3
426 echo     debian.8-x64: Builds overlay for Debian 8
427 echo     fedora.24-x64: Builds overlay for Fedora 24
428 echo     linux-x64: Builds overlay for portable linux
429 echo     opensuse.42.1-x64: Builds overlay for OpenSUSE 42.1
430 echo     osx.10.12-x64: Builds overlay for OSX 10.12
431 echo     osx-x64: Builds overlay for portable OSX
432 echo     rhel.7-x64: Builds overlay for RHEL 7 or CentOS
433 echo     ubuntu.14.04-x64: Builds overlay for Ubuntu 14.04
434 echo     ubuntu.16.04-x64: Builds overlay for Ubuntu 16.04
435 echo     ubuntu.16.10-x64: Builds overlay for Ubuntu 16.10
436 echo     win-x64: Builds overlay for portable Windows
437 echo     win7-x64: Builds overlay for Windows 7
438 echo ziptests: zips CoreCLR tests & Core_Root for a Helix run
439 echo crossgen: Precompiles the framework managed assemblies
440 echo Exclude- Optional parameter - specify location of default exclusion file (defaults to tests\issues.targets if not specified)
441 echo     Set to "" to disable default exclusion file.
442 echo -- ... : all arguments following this tag will be passed directly to msbuild.
443 echo -priority=^<N^> : specify a set of test that will be built and run, with priority N.
444 echo     0: Build only priority 0 cases as essential testcases (default)
445 echo     1: Build all tests with priority 0 and 1
446 echo     666: Build all tests with priority 0, 1 ... 666
447 echo -sequential: force a non-parallel build ^(default is to build in parallel
448 echo     using all processors^).
449 echo -verbose: enables detailed file logging for the msbuild tasks into the msbuild log file.
450 exit /b 1
451
452 :NoDIA
453 echo Error: DIA SDK is missing at "%VSINSTALLDIR%DIA SDK". ^
454 This is due to a bug in the Visual Studio installer. It does not install DIA SDK at "%VSINSTALLDIR%" but rather ^
455 at the install location of previous Visual Studio version. The workaround is to copy the DIA SDK folder from the Visual Studio install location ^
456 of the previous version to "%VSINSTALLDIR%" and then build.
457 :: DIA SDK not included in Express editions
458 echo Visual Studio Express does not include the DIA SDK. ^
459 You need Visual Studio 2015 or 2017 (Community is free).
460 echo See: https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/developer-guide.md#prerequisites
461 exit /b 1
462
463
464 :PrivateToolSet
465
466 echo %__MsgPrefix% Setting Up the usage of __ToolsetDir:%__ToolsetDir%
467
468 if /i "%__ToolsetDir%" == "" (
469     echo %__MsgPrefix%Error: A toolset directory is required for the Arm64 Windows build. Use the toolset_dir argument.
470     exit /b 1
471 )
472
473 if not exist "%__ToolsetDir%"\buildenv_arm64.cmd goto :Not_EWDK
474 call "%__ToolsetDir%"\buildenv_arm64.cmd
475 exit /b 0
476
477 :Not_EWDK
478 set PATH=%__ToolsetDir%\VC_sdk\bin;%PATH%
479 set LIB=%__ToolsetDir%\VC_sdk\lib\arm64;%__ToolsetDir%\sdpublic\sdk\lib\arm64
480 set INCLUDE=^
481 %__ToolsetDir%\VC_sdk\inc;^
482 %__ToolsetDir%\sdpublic\sdk\inc;^
483 %__ToolsetDir%\sdpublic\shared\inc;^
484 %__ToolsetDir%\sdpublic\shared\inc\minwin;^
485 %__ToolsetDir%\sdpublic\sdk\inc\ucrt;^
486 %__ToolsetDir%\sdpublic\sdk\inc\minwin;^
487 %__ToolsetDir%\sdpublic\sdk\inc\mincore;^
488 %__ToolsetDir%\sdpublic\sdk\inc\abi;^
489 %__ToolsetDir%\sdpublic\sdk\inc\clientcore;^
490 %__ToolsetDir%\diasdk\include
491 exit /b 0
492
493 :PrecompileFX
494 for %%F in (%CORE_ROOT%\*.dll) do call :PrecompileAssembly "%%F" %%~nF%%~xF
495 exit /b 0
496
497 REM Compile the managed assemblies in Core_ROOT before running the tests
498 :PrecompileAssembly
499
500 REM Skip mscorlib since it is already precompiled.
501 if /I "%2" == "mscorlib.dll" exit /b 0
502 if /I "%2" == "mscorlib.ni.dll" exit /b 0
503 REM don't precompile anything from CoreCLR
504 if /I exist %CORE_ROOT_STAGE%\%2 exit /b 0
505
506 "%CORE_ROOT_STAGE%\crossgen.exe" /Platform_Assemblies_Paths "%CORE_ROOT%" /in "%1" /out "%CORE_ROOT%/temp.ni.dll" >nul 2>nul
507 set /a __exitCode = %errorlevel%
508 if "%__exitCode%" == "-2146230517" (
509     echo %2 is not a managed assembly.
510     exit /b 0
511 )
512
513 if %__exitCode% neq 0 (
514     echo Unable to precompile %2
515     exit /b 0
516 )
517
518 :: Delete original .dll & replace it with the Crossgened .dll
519 del %1
520 ren "%CORE_ROOT%\temp.ni.dll" %2
521     
522 echo Successfully precompiled %2
523 exit /b 0