My symbol resolution on an x64 NGEN .NET 4.0 assembly it not working.
Details:
I have a .NET 4.0 command line assembly that I am compiling using Visual Studio with an x64 configuration. After I compile, I run NGEN (The 64 bit version) on it.
Having failed with XPERF analysing the callstacks (with -stackwalk profile) which won't resolve my symbols. I am now trying Perfmonitor from here: http://bcl.codeplex.com/releases/view/42784
I have done these steps and would have expected the call stacks to resolve:
- Start the NGEN'ed x64 app
- PerfMonitor Collect
- Perfmonitor Merge
- Perfmonitor Analyze
... Unfortunately, the stack traces don't work in PerfMonitor either.
I also tried running the app as a 32-bit - same issues. My symbols check out fine with symchk /v
I am at a loss on how to debug this broken stack trace functionality.