summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorTomas Weinfurt <tweinfurt@yahoo.com>2018-10-26 09:37:37 -0700
committerJan Kotas <jkotas@microsoft.com>2018-10-26 09:37:37 -0700
commite1f7ce16a4a8626054bdeb299f922b7f8b192c22 (patch)
treede5f70f71b1fa84a1147dc78843c37ae30c2695c /build.sh
parent62b78b03f4ad51cbced41792dbc144dea3ef7e22 (diff)
downloadcoreclr-e1f7ce16a4a8626054bdeb299f922b7f8b192c22.tar.gz
coreclr-e1f7ce16a4a8626054bdeb299f922b7f8b192c22.tar.bz2
coreclr-e1f7ce16a4a8626054bdeb299f922b7f8b192c22.zip
fixes to build properly on FreeBSD (#20588)
* fixes to build properly on FreeBSD * remove ulimit from freebsd branch
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 31994c97bd..459e52719d 100755
--- a/build.sh
+++ b/build.sh
@@ -421,6 +421,8 @@ isMSBuildOnNETCoreSupported()
done
elif [ "$__HostOS" == "OSX" ]; then
__isMSBuildOnNETCoreSupported=1
+ elif [ "$__HostOS" == "FreeBSD" ]; then
+ __isMSBuildOnNETCoreSupported=1
fi
fi
}
@@ -1062,7 +1064,7 @@ fi
build_CoreLib
-if [ $__CrossgenOnly ==1 ]; then
+if [ $__CrossgenOnly == 1 ]; then
build_CoreLib_ni "$__BinDir/crossgen"
fi