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:
Diffstat (limited to 'buildscripts/buildvars-setup.sh')
-rwxr-xr-xbuildscripts/buildvars-setup.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/buildscripts/buildvars-setup.sh b/buildscripts/buildvars-setup.sh
index 588bcd626..59dd405e2 100755
--- a/buildscripts/buildvars-setup.sh
+++ b/buildscripts/buildvars-setup.sh
@@ -6,7 +6,7 @@ usage()
echo "managed - optional argument to build the managed code"
echo "native - optional argument to build the native code"
echo "The following arguments affect native builds only:"
- echo "BuildArch can be: x64, x86, arm, arm64"
+ echo "BuildArch can be: x64, x86, arm, arm64, armel"
echo "BuildType can be: Debug, Release"
echo "clean - optional argument to force a clean build."
echo "verbose - optional argument to enable verbose build output."
@@ -178,6 +178,11 @@ while [ "$1" != "" ]; do
arm64)
export __BuildArch=arm64
;;
+ armel)
+ export __BuildArch=armel
+ export __ClangMajorVersion=3
+ export __ClangMinorVersion=5
+ ;;
debug)
export __BuildType=Debug
;;
@@ -264,4 +269,4 @@ fi
setup_dirs
export BUILDERRORLEVEL=0
-export BUILDVARS_DONE=1 \ No newline at end of file
+export BUILDVARS_DONE=1