You've already forked linux-packaging-mono
Imported Upstream version 5.0.0.42
Former-commit-id: fd56571888259555122d8a0f58c68838229cea2b
This commit is contained in:
parent
1190d13a04
commit
6bdd276d05
53
external/corert/build.cmd
vendored
Normal file
53
external/corert/build.cmd
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
@if not defined _echo @echo off
|
||||
setlocal EnableDelayedExpansion
|
||||
|
||||
set __ThisScriptShort=%0
|
||||
|
||||
if /i "%1" == "/?" goto HelpVarCall
|
||||
if /i "%1" == "-?" goto HelpVarCall
|
||||
if /i "%1" == "/h" goto HelpVarCall
|
||||
if /i "%1" == "-h" goto HelpVarCall
|
||||
if /i "%1" == "/help" goto HelpVarCall
|
||||
if /i "%1" == "-help" goto HelpVarCall
|
||||
|
||||
goto :NormalVarCall
|
||||
|
||||
:HelpVarCall
|
||||
call %~dp0buildscripts\buildvars-setup.cmd -help
|
||||
exit /b 1
|
||||
|
||||
:NormalVarCall
|
||||
call %~dp0buildscripts\buildvars-setup.cmd %*
|
||||
|
||||
IF NOT ERRORLEVEL 1 goto AfterVarSetup
|
||||
echo Setting build variables failed.
|
||||
exit /b %ERRORLEVEL%
|
||||
|
||||
:AfterVarSetup
|
||||
|
||||
echo Commencing CoreRT Repo build
|
||||
echo.
|
||||
|
||||
call %~dp0buildscripts\build-native.cmd %*
|
||||
|
||||
IF NOT ERRORLEVEL 1 goto AfterNativeBuild
|
||||
echo Native component build failed. Refer !__NativeBuildLog! for details.
|
||||
exit /b %ERRORLEVEL%
|
||||
|
||||
:AfterNativeBuild
|
||||
|
||||
call %~dp0buildscripts\build-managed.cmd %*
|
||||
|
||||
IF NOT ERRORLEVEL 1 goto AfterManagedBuild
|
||||
echo Managed component build failed. Refer !__BuildLog! for details.
|
||||
exit /b %ERRORLEVEL%
|
||||
|
||||
:AfterManagedBuild
|
||||
|
||||
call %~dp0buildscripts\build-tests.cmd %*
|
||||
|
||||
IF NOT ERRORLEVEL 1 goto AfterTests
|
||||
echo Tests failed.
|
||||
exit /b %ERRORLEVEL%
|
||||
|
||||
:AfterTests
|
||||
Reference in New Issue
Block a user