I am trying to use perf tool on an ARM target. Is it possible to do 'perf annotate' on a different machine as the target has limited capabilities.
thanks, GL.
I am trying to use perf tool on an ARM target. Is it possible to do 'perf annotate' on a different machine as the target has limited capabilities.
thanks, GL.
Copy perf.data
and vmlinux
(with debuginfo) to other machine and use:
perf annotate -i perf.data.target --vmlinux vmlinux.target <symbol>
Use --source
option to annotate with source.