summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorEgor Chesakov <Egor.Chesakov@microsoft.com>2018-10-03 10:21:23 -0700
committerGitHub <noreply@github.com>2018-10-03 10:21:23 -0700
commit48a8c74e355fad5c1a569b131f4038218c98dfee (patch)
tree5820c97c8730f0aecefd2a419623fe2ab1b539e2 /build.sh
parent302630ed5a3730470e9ffeeebcd38c737c03963d (diff)
downloadcoreclr-48a8c74e355fad5c1a569b131f4038218c98dfee.tar.gz
coreclr-48a8c74e355fad5c1a569b131f4038218c98dfee.tar.bz2
coreclr-48a8c74e355fad5c1a569b131f4038218c98dfee.zip
Support building cross-architecture components on armel (#20190)
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index 2dfcf5d748..031d294317 100755
--- a/build.sh
+++ b/build.sh
@@ -500,9 +500,9 @@ build_CoreLib()
exit 1
fi
elif [ $__DoCrossArchBuild == 1 ]; then
- if [[ ( "$__CrossArch" == "x86" ) && ( "$__BuildArch" == "arm" ) ]]; then
+ if [[ ( "$__CrossArch" == "x86" ) && ( "$__BuildArch" == "arm" || "$__BuildArch" == "armel" ) ]]; then
build_CoreLib_ni "$__CrossComponentBinDir/crossgen"
- elif [[ ( "$__CrossArch" == "x64" ) && ( "$__BuildArch" == "arm" ) ]]; then
+ elif [[ ( "$__CrossArch" == "x64" ) && ( "$__BuildArch" == "arm" || "$__BuildArch" == "armel" ) ]]; then
build_CoreLib_ni "$__CrossComponentBinDir/crossgen"
elif [[ ( "$__HostArch" == "x64" ) && ( "$__BuildArch" == "arm64" ) ]]; then
build_CoreLib_ni "$__CrossComponentBinDir/crossgen"