如何使用otool
苹果建议我使用“strings”或“otool”来检测代码中的私有API(isinf),我完全是新手,所以如何使用这些工具有任何帮助
apple suggested me to use "strings" or "otool" to dect the private api (isinf) in my code , I am totally newbie so any help how to use those tools
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
打开终端(Ctrl + Space -> 输入“终端”)..
并打印示例:
寻求帮助:
Open Terminal ( Ctrl + Space -> Type 'Terminal')..
and print example:
for help:
我使用 nm 来检查我的二进制文件。用法再简单不过了:
它将列出一些奇怪的内存地址或其他内容,然后是可见性字符,最后是符号。 T 是公开的,但请查看 nm 的手册页以了解更多信息。
按 Ctrl+空格 打开终端。
I use
nm
to inspect my binaries. Usage can't be simpler:It will list some weird memory-address or whatever, then a visibility character and lastly the symbol. T is public, but check out the man page of
nm
to find out more about this.Press Ctrl+space to open up the terminal.
在 macOS 上,otool 工具可以替代 Windows 上的 objdump。
您应该打开终端并打印示例:
如果您想反汇编文件,只需输入如下内容:
On macOS, the otool tools is alternative to the objdump on the Windows.
You should open Terminal and print example:
If you want to disassemble a file, Just type like this: