Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在邮件应用程序中覆盖网络套接字相关功能。但我不确定邮件应用程序是使用核心基础套接字还是 POSIX 套接字。
我使用 otool -l 在 LC_LOAD_DYLIB 部分中查找动态加载的库。但是,我想知道它调用了哪些确切的函数。
nm将向您显示导入的符号。用于nm -ufm /Applications/Mail.app/Contents/MacOS/Mail获取符号和它们来自的库/框架。
nm
nm -ufm /Applications/Mail.app/Contents/MacOS/Mail
在 MacPorts 中安装 binutils 包,然后使用 gobjdump?