summaryrefslogtreecommitdiff
path: root/build.cmd
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.cmd
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.cmd')
-rw-r--r--build.cmd6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.cmd b/build.cmd
index 64945cc159..715c6c228a 100644
--- a/build.cmd
+++ b/build.cmd
@@ -454,15 +454,15 @@ if %__BuildNativeCoreLib% EQU 1 (
set COMPlus_UseWindowsX86CoreLegacyJit=1
)
- echo "%__CrossgenExe%" %__IbcTuning% /Platform_Assemblies_Paths "%__BinDir%" /out "%__BinDir%\System.Private.CoreLib.ni.dll" "%__BinDir%\System.Private.CoreLib.dll"
- "%__CrossgenExe%" %__IbcTuning% /Platform_Assemblies_Paths "%__BinDir%" /out "%__BinDir%\System.Private.CoreLib.ni.dll" "%__BinDir%\System.Private.CoreLib.dll" > "%__CrossGenCoreLibLog%" 2>&1
+ echo "%__CrossgenExe%" %__IbcTuning% /Platform_Assemblies_Paths "%__BinDir%"\IL /out "%__BinDir%\System.Private.CoreLib.dll" "%__BinDir%\IL\System.Private.CoreLib.dll"
+ "%__CrossgenExe%" %__IbcTuning% /Platform_Assemblies_Paths "%__BinDir%"\IL /out "%__BinDir%\System.Private.CoreLib.dll" "%__BinDir%\IL\System.Private.CoreLib.dll" > "%__CrossGenCoreLibLog%" 2>&1
if NOT !errorlevel! == 0 (
echo %__MsgPrefix%Error: CrossGen System.Private.CoreLib build failed. Refer to %__CrossGenCoreLibLog%
:: Put it in the same log, helpful for Jenkins
type %__CrossGenCoreLibLog%
goto CrossgenFailure
)
- "%__CrossgenExe%" /Platform_Assemblies_Paths "%__BinDir%" /CreatePdb "%__BinDir%\PDB" "%__BinDir%\System.Private.CoreLib.ni.dll" >> "%__CrossGenCoreLibLog%" 2>&1
+ "%__CrossgenExe%" /Platform_Assemblies_Paths "%__BinDir%" /CreatePdb "%__BinDir%\PDB" "%__BinDir%\System.Private.CoreLib.dll" >> "%__CrossGenCoreLibLog%" 2>&1
if NOT !errorlevel! == 0 (
echo %__MsgPrefix%Error: CrossGen /CreatePdb System.Private.CoreLib build failed. Refer to %__CrossGenCoreLibLog%
:: Put it in the same log, helpful for Jenkins