dotnet / corefx-tools

Place to include various misc tools for .NET and .NET Core.
MIT License
58 stars 41 forks source link

Crossgen Requires -JITPath Parameter #50

Open brianrob opened 8 years ago

brianrob commented 8 years ago

From https://github.com/dotnet/cli/pull/3223 it appears that crossgen now requires the -JITPath parameter.

@gkhanna79, can you provide details on this change and what is needed? Perfcollect calls crossgen to generate perfmap files for tracing, and it sounds like it will be broken by this change.

gkhanna79 commented 8 years ago

crossgen needs to be invoked by passing the JITPath parameter to point to the absolute file path for clrjit.dll OR clrjit.dll needs to be next to crossgen.exe.

brianrob commented 8 years ago

Thanks @gkhanna79.