Is there a way to list all the functions called while executing a program in chronological order? Using the chronological list of invoked functions, order file can be generated. I can do this with program instrumentation (-finstrument-function-entry-bare) but that is too heavy for my use case. Are there tracing tools that can help with this on linux machines? I know dtrace has some capabilities but that is available on Mac OS only AFAICT.
Asked
Active
Viewed 28 times
1
-
See strace on Linux – stark Sep 30 '21 at 14:32