我正试图使用性能工具对一个手臂目标。是否可以在其他计算机上执行“perf annotate”,因为目标的功能有限。
谢谢,
德国劳埃德船级社。
最佳答案
将perf.data
和vmlinux
(带debuginfo)复制到其他计算机并使用:
perf annotate -i perf.data.target --vmlinux vmlinux.target <symbol>
使用
--source
选项用源代码注释。关于linux - 在ARM目标上运行性能,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41566985/