可以通过命令行使用 Instruments 吗?
仪器可以代替吗
瓦尔格林德
如果想使用仪器检查内存泄漏,可以从终端使用它吗?
Can Instruments be used as a replacement for
valgrind
If one wants to check for memory leaks using instruments can it be used from the terminal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
过去具有命令行界面的仪器:
用法示例:
对于泄漏,请尝试
Leaks.tracetemplate
。要查看所有可用模板,请使用-s
。还有另一个可执行文件,名为
leaks
。您可以通过给leaks
指定其PID来检查任何正在运行的应用程序:阅读Apple开发人员中有关泄漏的更多信息参考库。
Instruments used to have a command line interface:
Example usage:
For leaks, try the
Leaks.tracetemplate
. To see all available templates, use-s
.There is another executable, just called
leaks
. You can inspect any running application by givingleaks
its PID:Read more about leaks in the Apple developer reference library.
对于 Xcode 9,如果您想分析 iOS 应用程序,请使用如下示例命令:
instruments 命令参考:
https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/InstrumentsUserGuide /Recording,Pausing,andStoppingTraces.html#//apple_ref/doc/uid/TP40004652-CH12-SW3
For Xcode 9, if you want to profile a iOS app, an example command like this:
instruments command ref:
https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/InstrumentsUserGuide/Recording,Pausing,andStoppingTraces.html#//apple_ref/doc/uid/TP40004652-CH12-SW3