如何让 Clang 静态分析器的 Apple 脚本与 Xcode 一起使用?

发布于 2024-08-03 22:44:41 字数 849 浏览 6 评论 0原文

这是一个很多人都说很好的脚本:

http://allancraig.net/blog/?p =381

但我无法让它工作。要运行该脚本,我必须使用 Xcode 脚本编辑器执行哪些步骤?

我已将其粘贴到“Script Editor.app”(Mac OSx 中的脚本编辑器应用程序)中,并将其另存为 clang.scpt

然后,我转到 Xcode 并打开脚本编辑器,使用以下设置创建一个新脚本:

Input = Selection (??) 目录 = 选择 (??)

脚本代码:

#!/bin/sh
/Applications/Clang\ Static\ Analyzer/clang.scpt

必须是这样的吗?我的脚本是我的应用程序目录,在一个名为“Clang Static Analyzer”的子目录中。我刚刚在终端上放置 clang.scpt 来获取路径。

输出 = 选择后插入 (??)

错误 = 与脚本输出合并 (??)

然后,当我执行该脚本时,会发生这种情况:

/var/folders/QD/QDPLhhOJyvoyecmZQk+++TI/-Tmp-/965ABD-3FF7-46A3-8131-AA9CD1553D26-92280-0401D25AC142AE31: 第 2 行: /应用程序/Clang 静态 分析器/clang.scpt:权限被拒绝

有什么想法吗?

Here's a script where lots of people say it's good:

http://allancraig.net/blog/?p=381

But I can't get it to work. What are the steps I have to do with the Xcode script editor, to run that script?

I have pasted it in "Script Editor.app", that Script Editor app from Mac OSx and saved it as clang.scpt.

Then, I went to Xcode and opened the Script Editor, created a new script with this settings:

Input = Selection (??)
Directory = Selection (??)

Script Code:

#!/bin/sh
/Applications/Clang\ Static\ Analyzer/clang.scpt

Must it look like this?? My script is my Applications directory, and there, in a subdir called "Clang Static Analyzer". I just dropped clang.scpt on terminal to get the path.

Output = Insert after Selection (??)

Errors = Merge with script output (??)

Then, when I execute that script, this happens:

/var/folders/QD/QDPLhhOJyvoyecmZQk+++TI/-Tmp-/965ABD-3FF7-46A3-8131-AA9CD1553D26-92280-0401D25AC142AE31:
line 2:
/Applications/Clang Static
Analyzer/clang.scpt: Permission denied

Any idea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

唠甜嗑 2024-08-10 22:44:41

在该页面中,您缺少

/usr/bin/osascript

脚本名称之前的内容。上面的行应该是:

/usr/bin/osascript /Applications/Clang\ Static\ Analyzer/clang.scpt

老实说,我建议安装 Snow Leopard 和 Xcode 3.2。 Clang 静态分析器现在与 Xcode 完美集成,您可以让分析器在每个构建过程中运行,并让它说明问题所在,与您的代码一致。如果您担心 iPhone OS 2.x 的开发,这在 Xcode 3.2 中是可能的

From that page, you are missing the

/usr/bin/osascript

before the name of your script. The line above should read

/usr/bin/osascript /Applications/Clang\ Static\ Analyzer/clang.scpt

Honestly, I'd recommend installing Snow Leopard and Xcode 3.2. The Clang Static Analyzer is beatifully integrated with Xcode now, to the point where you can have the analyzer run with every build pass and have it illustrate where problems are, inline with your code. If you're worried about developing for iPhone OS 2.x, that is possible in Xcode 3.2.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文