How to analyze a dump file from a Delphi DLL file?

前端 未结 3 2113
遥遥无期
遥遥无期 2020-12-25 14:36

I\'m an escalation engineer on a product which use both C# and Delphi 2006 code.

In most cases C# issues are debugged with WinDbg and Delphi 2006 issues with EurekaL

3条回答
  •  囚心锁ツ
    2020-12-25 14:55

    The latest version of cv2pdb tool can convert the DBGs made with map2dbg into PDB files.

    So, if you've previously made your DBGs like this: map2dbg App.exe

    Just add this command afterwards: cv2pdb -s. App.exe

    -s. parameter is necessary to separate the method names from the class names with a point.

    cv2pdb built for Win32 on the current sources can to downloaded from here.

提交回复
热议问题