otool -L文件名/路径不起作用

时间:2016-03-18 11:53:52

标签: ios iphone shared-libraries decompiling otool

我正在浏览各种编程/调试教程并使用" 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(无效参数)

1 个答案:

答案 0 :(得分:1)

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