如何使用otool

发布于 2024-11-05 23:11:13 字数 73 浏览 3 评论 0原文

苹果建议我使用“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

撩心不撩汉 2024-11-12 23:11:13

打开终端(Ctrl + Space -> 输入“终端”)..

并打印示例:

otool -MVv yourlib.a

寻求帮助:

otool --help

Open Terminal ( Ctrl + Space -> Type 'Terminal')..

and print example:

otool -MVv yourlib.a

for help:

otool --help
债姬 2024-11-12 23:11:13

我使用 nm 来检查我的二进制文件。用法再简单不过了:

 nm <filename>

它将列出一些奇怪的内存地址或其他内容,然后是可见性字符,最后是符号。 T 是公开的,但请查看 nm 的手册页以了解更多信息。

Ctrl+空格 打开终端。

I use nm to inspect my binaries. Usage can't be simpler:

 nm <filename>

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.

怪我入戏太深 2024-11-12 23:11:13

在 macOS 上,otool 工具可以替代 Windows 上的 objdump。
您应该打开终端并打印示例:

$ man otool  //Usage for otool

如果您想反汇编文件,只需输入如下内容:

$ otool -tV filename

On macOS, the otool tools is alternative to the objdump on the Windows.
You should open Terminal and print example:

$ man otool  //Usage for otool

If you want to disassemble a file, Just type like this:

$ otool -tV filename
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文