digitalmars.D.learn - How to debug/set breakpoint a dynamic library.so ?
- mw (6/6) Feb 09 2023 The dynamic library.so is built from D (with pyd), and invoked
- =?UTF-8?Q?Ali_=c3=87ehreli?= (5/12) Feb 09 2023 I may be totally off on this but I think it is as simple as the followin...
- mw (3/19) Feb 09 2023 Thank you, it worked!
The dynamic library.so is built from D (with pyd), and invoked from Python. I'm just wondering How to debug/set breakpoint a dynamic library.so ? Can someone give an example? Thanks.
Feb 09 2023
On 2/9/23 06:00, mw wrote:The dynamic library.so is built from D (with pyd), and invoked from Python. I'm just wondering How to debug/set breakpoint a dynamic library.so ? Can someone give an example? Thanks.I may be totally off on this but I think it is as simple as the following: gdb --args your_python_program Once inside, set a break point on the dynamic library symbol. Then run. Ali
Feb 09 2023
On Thursday, 9 February 2023 at 19:26:59 UTC, Ali Çehreli wrote:On 2/9/23 06:00, mw wrote:Thank you, it worked! All the best wishes for the recent earthquake in Turkey.The dynamic library.so is built from D (with pyd), and invoked from Python. I'm just wondering How to debug/set breakpoint a dynamic library.so ? Can someone give an example? Thanks.I may be totally off on this but I think it is as simple as the following: gdb --args your_python_program Once inside, set a break point on the dynamic library symbol. Then run. Ali
Feb 09 2023