linux - ltrace : only show direct calls from a program to a library, and no inter-library call -
when called no argument other program run, ltrace seems display calls made program shared libraries, , not inter-library calls.
i'd filter down these results selecting library calls made into. -l
option filters library, inter-library calls shown also. adding -e '@my_program
not difference.
ltrace
's man page states inter-library calls removed linking program -dsymbolic
.
is there way rid of inter-library calls without recompiling program?
thanks
Comments
Post a Comment