summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorGaurav Khanna <gkhanna@microsoft.com>2017-04-27 10:46:47 -0700
committerGitHub <noreply@github.com>2017-04-27 10:46:47 -0700
commitc983bb86ddf46916206efc7cd5bc942ec8b834cb (patch)
tree9d3898bc06cabae6fd7207ccf197ce76892b7b38 /build.sh
parent368ee30f34fda812d8d936dff4d59b91270453c1 (diff)
downloadcoreclr-c983bb86ddf46916206efc7cd5bc942ec8b834cb.tar.gz
coreclr-c983bb86ddf46916206efc7cd5bc942ec8b834cb.tar.bz2
coreclr-c983bb86ddf46916206efc7cd5bc942ec8b834cb.zip
[WIP] Enable binding to CoreLib as NI image (#11040)
Enable binding to CoreLib as NI image
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 018cdf0439..12b7b726c4 100755
--- a/build.sh
+++ b/build.sh
@@ -379,7 +379,7 @@ build_CoreLib_ni()
{
if [ $__SkipCoreCLR == 0 -a -e $__BinDir/crossgen ]; then
echo "Generating native image for System.Private.CoreLib."
- $__BinDir/crossgen $__IbcTuning $__BinDir/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."
exit 1
@@ -387,7 +387,7 @@ build_CoreLib_ni()
if [ "$__BuildOS" == "Linux" ]; then
echo "Generating symbol file for System.Private.CoreLib."
- $__BinDir/crossgen /CreatePerfMap $__BinDir $__BinDir/System.Private.CoreLib.ni.dll
+ $__BinDir/crossgen /CreatePerfMap $__BinDir $__BinDir/System.Private.CoreLib.dll
if [ $? -ne 0 ]; then
echo "Failed to generate symbol file for System.Private.CoreLib."
exit 1