You've already forked linux-packaging-mono
Imported Upstream version 5.10.0.69
Former-commit-id: fc39669a0b707dd3c063977486506b6793da2890
This commit is contained in:
parent
d8f8abd549
commit
e2950ec768
9
external/corert/tests/testenv.cmd
vendored
9
external/corert/tests/testenv.cmd
vendored
@@ -1,4 +1,4 @@
|
||||
@echo off
|
||||
@if not defined _echo @echo off
|
||||
|
||||
:Arg_Loop
|
||||
if "%1" == "" goto :ArgsDone
|
||||
@@ -6,6 +6,7 @@ if /i "%1" == "/?" goto :Usage
|
||||
if /i "%1" == "x64" (set CoreRT_BuildArch=x64&&shift&goto Arg_Loop)
|
||||
if /i "%1" == "x86" (set CoreRT_BuildArch=x86&&shift&goto Arg_Loop)
|
||||
if /i "%1" == "arm" (set CoreRT_BuildArch=arm&&shift&goto Arg_Loop)
|
||||
if /i "%1" == "wasm" (set CoreRT_BuildArch=wasm&&shift&goto Arg_Loop)
|
||||
|
||||
if /i "%1" == "dbg" (set CoreRT_BuildType=Debug&shift&goto Arg_Loop)
|
||||
if /i "%1" == "debug" (set CoreRT_BuildType=Debug&shift&goto Arg_Loop)
|
||||
@@ -16,10 +17,12 @@ if /i "%1" == "release" (set CoreRT_BuildType=Release&shift&goto Arg_Loop)
|
||||
|
||||
set CoreRT_BuildOS=Windows_NT
|
||||
|
||||
set CoreRT_ToolchainDir=%~dp0\..\bin\Product\%CoreRT_BuildOS%.%CoreRT_BuildArch%.%CoreRT_BuildType%\packaging\publish1
|
||||
if /i "%CoreRT_BuildArch%" == "wasm" (set CoreRT_BuildOS=WebAssembly)
|
||||
|
||||
set CoreRT_ToolchainDir=%~dp0\..\bin\%CoreRT_BuildOS%.%CoreRT_BuildArch%.%CoreRT_BuildType%
|
||||
|
||||
exit /b 0
|
||||
|
||||
:Usage
|
||||
echo %0 [arch: x64/x86/arm] [flavor: debug/release]
|
||||
echo %0 [arch: x64/x86/arm/wasm] [flavor: debug/release]
|
||||
exit /b 1
|
||||
|
||||
Reference in New Issue
Block a user