Re: ProjectCenter : GDB the framework
Riccardo Mottola <[email protected]> Mon, 4 Oct 2021 01:44:01 +0200
| Newsgroups | gmane.comp.lib.gnustep.devel |
|---|---|
| Organization | GNUstep |
| Message-ID | <[email protected]> |
Hi Daniel, On 03/10/2021 17:33, Daniel Santos wrote: > If I set a breakpoint in a file outside the framework, I can step into framework code and list, etc. > Don’t know how to set breakpoints inside the framework. if everything is linked and set-up fine, there should be no issues putting a breakpoint or debugging a linked framework. It may happen that on startup GDB doesn't know about the classes so it will have a "pending breakpoint" that gets solved on load. Or you can run the program, interrupt it, set the breakpoint on the now loaded Framework, and continue. Riccardo