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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQiao <35673267+shushanhf@users.noreply.github.com>2022-01-14 09:33:20 +0300
committerGitHub <noreply@github.com>2022-01-14 09:33:20 +0300
commitb7e0a85ab6111b77ad19a1c2db0dedcedded4940 (patch)
treeeabbb2f0169fc55df55ec94d073888c33f3906ec /eng/build.sh
parent1ba80f698c85b525545f1a13c02eb405588b0461 (diff)
[LoongArch64] add all the coreclr-build-config files (#62889)
Diffstat (limited to 'eng/build.sh')
-rwxr-xr-xeng/build.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/eng/build.sh b/eng/build.sh
index f1ef5958fdb..ea8e3089e95 100755
--- a/eng/build.sh
+++ b/eng/build.sh
@@ -17,7 +17,7 @@ scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
usage()
{
echo "Common settings:"
- echo " --arch (-a) Target platform: x86, x64, arm, armel, arm64, s390x or wasm."
+ echo " --arch (-a) Target platform: x86, x64, arm, armel, arm64, loongarch64, s390x or wasm."
echo " [Default: Your machine's architecture.]"
echo " --binaryLog (-bl) Output binary log."
echo " --cross Optional argument to signify cross compilation."
@@ -206,12 +206,12 @@ while [[ $# > 0 ]]; do
fi
passedArch="$(echo "$2" | tr "[:upper:]" "[:lower:]")"
case "$passedArch" in
- x64|x86|arm|armel|arm64|s390x|wasm)
+ x64|x86|arm|armel|arm64|loongarch64|s390x|wasm)
arch=$passedArch
;;
*)
echo "Unsupported target architecture '$2'."
- echo "The allowed values are x86, x64, arm, armel, arm64, s390x, and wasm."
+ echo "The allowed values are x86, x64, arm, armel, arm64, loongarch64, s390x, and wasm."
exit 1
;;
esac