summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorGleb Balykov <g.balykov@samsung.com>2019-08-02 11:48:29 +0300
committerGleb Balykov <g.balykov@samsung.com>2019-08-06 12:41:53 +0300
commit725d5fb13b701eb78683a3bfa26ada4effc04a26 (patch)
treecfab92bd8e8d66a5c5855487dcbab6644d282250 /build.sh
parent36b446aab0cba381dbd60545dfc790845d50bc38 (diff)
downloadcoreclr-725d5fb13b701eb78683a3bfa26ada4effc04a26.tar.gz
coreclr-725d5fb13b701eb78683a3bfa26ada4effc04a26.tar.bz2
coreclr-725d5fb13b701eb78683a3bfa26ada4effc04a26.zip
[Tizen] Fix gbs build
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/build.sh b/build.sh
index f4a0a69561..cff2195c82 100755
--- a/build.sh
+++ b/build.sh
@@ -75,9 +75,9 @@ initTargetDistroRid()
# Only pass ROOTFS_DIR if cross is specified.
if (( ${__CrossBuild} == 1 )); then
passedRootfsDir=${ROOTFS_DIR}
- elif [ "${__BuildArch}" != "${__HostArch}" ]; then
- echo "Error, you are building a cross scenario without passing -cross."
- exit 1
+ #elif [ "${__BuildArch}" != "${__HostArch}" ]; then
+ # echo "Error, you are building a cross scenario without passing -cross."
+ # exit 1
fi
initDistroRidGlobal ${__BuildOS} ${__BuildArch} ${__PortableBuild} ${passedRootfsDir}
@@ -448,10 +448,10 @@ build_CoreLib()
if [ $__SkipCrossgen == 1 ]; then
echo "Skipping generating native image"
- if [ $__CrossBuild == 1 ]; then
+ #if [ $__CrossBuild == 1 ]; then
# Crossgen not performed, so treat the IL version as the final version
cp $__CoreLibILDir/System.Private.CoreLib.dll $__BinDir/System.Private.CoreLib.dll
- fi
+ #fi
return
fi