Tools系列Mac OSX查看可执行文件引用的动态链接库

Posted 飞翔的鲲

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tools系列Mac OSX查看可执行文件引用的动态链接库相关的知识,希望对你有一定的参考价值。

Date: 2022.3.25


原文链接:https://blog.csdn.net/cocoasprite/article/details/12839261

Mac OS X下二进制可执行文件的动态链接库是dylib文件,linux下用ldd查看,苹果系统用otool即可,不过要安装xcode

otool –L xxxx.dylib

The “strings” tool can output a list of the methods that the library calls and “otool -ov” will output the Objective-C class structures and their defined methods.


THE END!

以上是关于Tools系列Mac OSX查看可执行文件引用的动态链接库的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Mac OSX 下使用 gcc 设置可执行文件的运行时路径(-rpath)?

为 OSX 编写和公证可执行文件

是否有适用于 Mac OSX 的本机 Java AOT?

在 Mac OSX 上部署 Qt 应用程序时缺少文件

Mac OSX 上数据库文件的位置

如何在MAC OSX上限制程序的内存使用的示例