I have a library function call of the third part scattered in many places of my executable file. My executable is created using debug symbols, but there are no debug symbols in the third-party library, so I cannot place a breakpoint for this function. I want to set a breakpoint when calling a library function to check the call stack. How to set a breakpoint for all calls to the library function call in my executable file.
source
share