summaryrefslogtreecommitdiff
path: root/build.cmd
diff options
context:
space:
mode:
authorBrian Sullivan <briansul@microsoft.com>2017-06-29 15:57:40 -0700
committerBrian Sullivan <briansul@microsoft.com>2017-06-29 17:16:53 -0700
commit60e038191307535ea6c073b8fb249dce45b071f7 (patch)
treeb70b440d3a5a5344309f160a836ab7447eb7beba /build.cmd
parent88e0428caa33fd04bd8f5f8bc1a60b6a44b93622 (diff)
downloadcoreclr-60e038191307535ea6c073b8fb249dce45b071f7.tar.gz
coreclr-60e038191307535ea6c073b8fb249dce45b071f7.tar.bz2
coreclr-60e038191307535ea6c073b8fb249dce45b071f7.zip
Implement a /verbose flag to show the verbose output from crossgen
Added info on /verbose option to PrintUsageHelper() Convert printf(ascii) to wide strings in methodtable.cpp In build.cmd echo the crossgen /CreatePdb command line
Diffstat (limited to 'build.cmd')
-rw-r--r--build.cmd1
1 files changed, 1 insertions, 0 deletions
diff --git a/build.cmd b/build.cmd
index e705d31efb..11b9181699 100644
--- a/build.cmd
+++ b/build.cmd
@@ -455,6 +455,7 @@ if %__BuildNativeCoreLib% EQU 1 (
type %__CrossGenCoreLibLog%
goto CrossgenFailure
)
+ echo "%__CrossgenExe%" /Platform_Assemblies_Paths "%__BinDir%" /CreatePdb "%__BinDir%\PDB" "%__BinDir%\System.Private.CoreLib.dll"
"%__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%