Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschellap <schellap@microsoft.com>2015-11-17 04:40:44 +0300
committerschellap <schellap@microsoft.com>2015-11-17 04:40:44 +0300
commiteb633c6067a3e1f7681739cade60d2508bc7424d (patch)
tree9765d2ed0aa8ed82e3b311b1f90c99ff5a5ded4c /src/scripts
parent119481e3c8e6dddb5ebe6bee90f9a1b78d61126d (diff)
Change JIT name from ProtoJit to RyuJit and Update feed URL
Diffstat (limited to 'src/scripts')
-rw-r--r--src/scripts/dotnet-compile-native.bat10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/scripts/dotnet-compile-native.bat b/src/scripts/dotnet-compile-native.bat
index 6c2ab8de6..a44dcca48 100644
--- a/src/scripts/dotnet-compile-native.bat
+++ b/src/scripts/dotnet-compile-native.bat
@@ -4,7 +4,7 @@ setlocal EnableDelayedExpansion
REM
REM Script to compile a MSIL assembly to native code.
REM
-REM Supported code-generators: CPPCODEGEN, ProtoJIT
+REM Supported code-generators: CPPCODEGEN, RyuJIT
REM
if "%VS140COMNTOOLS%" == "" (
@@ -84,12 +84,12 @@ set Assembly=%AssemblyFileName%%AssemblyExt%
REM Validate the code-generation mode
if /i "%__CompileMode%" == "cpp" goto :ModeCPP
-if /i "%__CompileMode%" == "protojit" goto :ModeProtoJIT
+if /i "%__CompileMode%" == "ryujit" goto :ModeRyuJIT
echo Please specify a valid compilation mode.
goto :InvalidArgs
-:ModeProtoJIT
-REM *** ProtoJIT Codegen ***
+:ModeRyuJIT
+REM *** RyuJIT Codegen ***
REM Generate the obj file for the MSIL assembly
set ObjFileName=%__Infile%.obj
@@ -188,7 +188,7 @@ goto :eof
:InvalidArgs
echo Invalid command line
echo.
-echo Usage: dotnet-compile-native arch buildType /in path-to-MSIL-assembly /out path-to-native executable /appdepsdk path to contents of Microsoft.DotNet.AppDep nuget package [/mode cpp|protojit /codegenpath path to contents of Microsoft.DotNet.ProtoJit package /objgenpath path to contents of Microsoft.DotNet.ObjWriter package] [/logpath path to drop logfiles in]
+echo Usage: dotnet-compile-native arch buildType /in path-to-MSIL-assembly /out path-to-native executable /appdepsdk path to contents of Microsoft.DotNet.AppDep nuget package [/mode cpp|ryujit /codegenpath path to contents of Microsoft.DotNet.RyuJit package /objgenpath path to contents of Microsoft.DotNet.ObjWriter package] [/logpath path to drop logfiles in]
:FailedExit
exit /B 1