我正在浏览各种编程/调试教程,并在终端中使用“otool”命令。一个示例是检查共享库。该错误始终是两个之一。我正在从文件所在的目录运行它。仅输入otool即可给出otool“-x”开关的列表。我查看了多个文件和目录上的开关列表,并得到相同的错误。

我想念什么?

$ otool -L DemoApp

错误:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/otool:无法打开文件:DemoApp(无此文件或目录)

要么

$ otool -L DemoApp.app

错误:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/otool:无法映射文件:DemoApp.app(无效参数)

最佳答案

您需要指向最终的可执行文件。 DemoApp.app只是一个目录。试试otool -L ~/Applications/DemoApp.app/Contents/MacOS/DemoApp

10-06 12:02