-
Notifications
You must be signed in to change notification settings - Fork 203
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
PDB with a relative path is searched relative to the debugger #32
Comments
Should be fixed as of d88000d - let me know if you still run into issues. |
PDBs are now loading as expected! But the first time I ran it, the debugger crashed after reloading the PDB.
This is probably due to the change in the number of lines, not the PDB. |
Hmmm. While investigating that callstack I found a few big issues, which I've now resolved. Can you pull/build post- 0bc96a0, and let me know if you run into the same issue? |
I have no longer been able to crash the debugger by changing the number of lines. But noticed that the breakpoint moves after the file is changed. notepad_C2anIC2sYx.1.mp4After initially triggering, it triggers where it is displayed. |
Yeah that is to be expected. We currently don’t do any text file diffs or anything like that to move breakpoints after a file has changed. |
If you specify a relative path to the PDB inside the DLL (In my case, I edit
RSDS
/PDB70
CODEVIEW), then the debugger looks for the PDB next to itself instead of next to the DLL. Therefore, the PDB cannot be loaded.For testing I just copied
raddbg.exe
into the library folder and everything worked as expected.The text was updated successfully, but these errors were encountered: