3

我正在浏览一些不同的编程/调试教程,并在终端中使用“otool”命令。一个例子是检查共享库。错误总是两个之一。我从文件所在的目录运行它。只输入 otool 会给出 otool “-x” 开关的列表。我已经查看了多个文件和目录的开关列表并得到了相同的错误。

我错过了什么?

$ otool -L 演示应用

错误:/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(无效参数)

4

1 回答 1

3

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

于 2016-04-08T07:50:32.773 回答