Is it possible to debug into a DLL with only a PDB and no source code?

前端 未结 2 616
迷失自我
迷失自我 2020-12-20 03:51

I\'m trying to debug an exe that calls a dll, in Visual Studio. I made sure I had the corresponding pdb in the same path as the dll.

But I cannot get into the functi

2条回答
  •  情深已故
    2020-12-20 04:21

    Yes, you need the source code to source debug. The .PDB only contains symbols so you will be able, for example, to view a stack trace or determine the source file name and line number of a crash. Otherwise, you need the source code.

提交回复
热议问题