Prevent PLT (procedure linkage table) breakpoints in GDB
问题 In recent versions of GDB, setting a breakpoint on a library function call results in multiple actual breakpoints: Call into the procedure linkage table (PLT) The actual function call This means that when the library function is called, we end up going through two breaks each time. In previous GDB versions, only #2 would be created and hence you only get one break. So the question is: can one can create a library function call breakpoint without the corresponding PLT breakpoint? I am aware