summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorjashook <jashoo@microsoft.com>2017-08-11 08:56:20 -0700
committerjashook <jashoo@microsoft.com>2017-08-11 08:56:20 -0700
commit3a6303960f61493b83461da122b13b5ac9d24fa3 (patch)
treed4c08456805f09d6bded9270d14575f9ec00a034 /build.sh
parent1a55fa5b9881c256078090f0d2ad4961c96c2865 (diff)
downloadcoreclr-3a6303960f61493b83461da122b13b5ac9d24fa3.tar.gz
coreclr-3a6303960f61493b83461da122b13b5ac9d24fa3.tar.bz2
coreclr-3a6303960f61493b83461da122b13b5ac9d24fa3.zip
Log the crossgen command in build.sh.
This makes it easier to copy paste the commnand if it fails.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/build.sh b/build.sh
index ccd3804bef..ddc1f73078 100755
--- a/build.sh
+++ b/build.sh
@@ -422,6 +422,7 @@ build_CoreLib_ni()
if [ $__SkipCoreCLR == 0 -a -e $__BinDir/crossgen ]; then
echo "Generating native image for System.Private.CoreLib."
+ echo "$__BinDir/crossgen /Platform_Assemblies_Paths $__BinDir/IL $__IbcTuning /out $__BinDir/System.Private.CoreLib.dll $__BinDir/IL/System.Private.CoreLib.dll"
$__BinDir/crossgen /Platform_Assemblies_Paths $__BinDir/IL $__IbcTuning /out $__BinDir/System.Private.CoreLib.dll $__BinDir/IL/System.Private.CoreLib.dll
if [ $? -ne 0 ]; then
echo "Failed to generate native image for System.Private.CoreLib."