summaryrefslogtreecommitdiff
path: root/build-test.cmd
diff options
context:
space:
mode:
authorwtgodbe <wigodbe@microsoft.com>2017-05-04 11:57:51 -0700
committerwtgodbe <wigodbe@microsoft.com>2017-05-04 15:47:07 -0700
commitcd37819de42a5f208c9d7b9bcf08b9f6d928e1a2 (patch)
treea6dd3e1172ef4ad7161acb0b5b827f427967854e /build-test.cmd
parent1ff9062d235630a3a47bffa6459549c669432c4a (diff)
downloadcoreclr-cd37819de42a5f208c9d7b9bcf08b9f6d928e1a2.tar.gz
coreclr-cd37819de42a5f208c9d7b9bcf08b9f6d928e1a2.tar.bz2
coreclr-cd37819de42a5f208c9d7b9bcf08b9f6d928e1a2.zip
Rename all xxx.ni.dll's to xxx.dll for Helix Crossgen runs
Diffstat (limited to 'build-test.cmd')
-rw-r--r--build-test.cmd6
1 files changed, 5 insertions, 1 deletions
diff --git a/build-test.cmd b/build-test.cmd
index 9142eeea01..21f54ef91f 100644
--- a/build-test.cmd
+++ b/build-test.cmd
@@ -512,7 +512,7 @@ if /I "%2" == "mscorlib.ni.dll" exit /b 0
REM don't precompile anything from CoreCLR
if /I exist %CORE_ROOT_STAGE%\%2 exit /b 0
-"%CORE_ROOT_STAGE%\crossgen.exe" /Platform_Assemblies_Paths "%CORE_ROOT%" "%1" >nul 2>nul
+"%CORE_ROOT_STAGE%\crossgen.exe" /Platform_Assemblies_Paths "%CORE_ROOT%" /in "%1" /out "%CORE_ROOT%/temp.ni.dll" >nul 2>nul
set /a __exitCode = %errorlevel%
if "%__exitCode%" == "-2146230517" (
echo %2 is not a managed assembly.
@@ -523,6 +523,10 @@ if %__exitCode% neq 0 (
echo Unable to precompile %2
exit /b 0
)
+
+:: Delete original .dll & replace it with the Crossgened .dll
+del %1
+ren "%CORE_ROOT%\temp.ni.dll" %2
echo Successfully precompiled %2
exit /b 0