我有一个Xcode项目。我试图在其中集成OcLint
。但是它说没有OCLint,我该如何下载OCLint
并将其添加到系统路径中,以便可以将OCLint
集成到我的xcode项目中。
编辑:
当我有一部分OCLint脚本为
hash oclint &> /dev/null
if [ $? -eq 1 ]; then
echo >&2 "oclint not found, analyzing stopped"
exit 1
fi
它给出
oclint not found, analyzing stopped
。请给我一个解决方案。
最佳答案
您可以从以下位置下载oclint:http://archives.oclint.org/nightly/oclint-0.9.dev.02251e4-x86_64-darwin-14.0.0.tar.gz
要集成到您的xcode项目中,可以使用以下链接:http://docs.oclint.org/en/dev/guide/xcode.html
以下是我用来生成html文件的脚本。
OCLINT_HOME是oclint下载文件夹的路径。我已将文件夹重命名为oclintrelease。
OCLINT_HOME=/Users/Dheeraj/Downloads/oclintrelease
export PATH=$OCLINT_HOME/bin:$PATH
hash oclint &> /dev/null
if [ $? -eq 1 ]; then
echo >&2 "oclint not found, analyzing stopped"
exit 1
fi
cd ${TARGET_TEMP_DIR}
if [ ! -f compile_commands.json ]; then
echo "[*] compile_commands.json not found, possibly clean was performed"
echo "[*] starting xcodebuild to rebuild the project.."
# clean previous output
if [ -f xcodebuild.log ]; then
rm xcodebuild.log
fi
cd ${SRCROOT}
xcodebuild clean
#build xcodebuild.log
xcodebuild | tee ${TARGET_TEMP_DIR}/xcodebuild.log
#xcodebuild <options>| tee ${TARGET_TEMP_DIR}/xcodebuild.log
echo "[*] transforming xcodebuild.log into compile_commands.json..."
cd ${TARGET_TEMP_DIR}
#transform it into compile_commands.json
oclint-xcodebuild
fi
echo "[*] starting analyzing"
cd ${TARGET_TEMP_DIR}
oclint-json-compilation-database -v oclint_args "-report-type html -o $OCLINT_HOME/report.html"
您的报告将使用上述脚本生成到OCLINT_HOME中提供的路径。
如果要在派生数据文件夹中生成报告,则将最后一行替换为:
oclint-json-compilation-database -v oclint_args "-report-type html -o report.html"
仅当构建成功且可以将生成的报告路径和脚本报告检查到Xcode的Log Navigator中时,才会生成HTML报告。
关于ios - OCLint不在系统路径中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30052686/