-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PDB debug symbol loading using LLVM #7
Comments
Hi, how is the status of this issue? It would be great if I can use this debugger for my project, so if I can help you let me know (maybe with a minimal test case?) -- foerdi |
Sorry, I haven't worked on this project much in the last few months, but I hope to pick it up again soon. The By the way, if you're developing D code on Windows, I recommend trying Visual Studio + VisualD with Visual Studio's debugger. I've been using it lately and it mostly works just fine. |
Thank you for the quick response.
Linux is my main System. I hope that I don't have to start my Windows VM to debug my project. |
Replaces: #5
I was originally under the impression that bfd should be responsible for PDB debug symbol loading.
This seems to have been incorrect: GDB does all the debug symbol loading for other debug formats, and only relies on bfd to set up the file for reading.
This means the next step is to start implementing PDB debug symbol loading using LLVM in GDB. We use bfd to do the initial parsing of the PDB file headers and to initialise the section info.
The text was updated successfully, but these errors were encountered: