gpt4 book ai didi

xcode - 在 Xcode 中使用 Clang 静态分析器

转载 作者:行者123 更新时间:2023-12-04 15:28:24 24 4
gpt4 key购买 nike

由于“当前项目目录”没有 Xcode 脚本变量,您如何创建脚本菜单项以从 Xcode 对当前项目运行 Clang 静态分析器?

最佳答案

从 XCode 脚本菜单项中,“编辑用户脚本”输入以下脚本:

#!/bin/bash
result=$( osascript << END
tell application "Xcode"
tell active project document
set projectPath to path as string
end tell
end tell
return projectPath
END
)

cd "$result"

/Developer/clangchecker/scan-build -k -V xcodebuild -configuration Debug -sdk iphonesimulator3.0

显然,您需要调整安装 Clang 的路径,并调整到您使用的 SDK 版本。

请记住在使用 scan-build 之前立即执行“Clean All”,否则结果可能不完整。

关于xcode - 在 Xcode 中使用 Clang 静态分析器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/961844/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com