Oclint不在系统路径中



我有一个Xcode项目。我试图将OcLint集成在其中。但它说没有Oclint。如何下载并将OCLint添加到我的系统路径中,以便可以在Xcode项目中集成OCLint

编辑:

当我有一个occlint脚本的部分

hash oclint &> /dev/null
if [ $? -eq 1 ]; then
echo >&2 "oclint not found, analyzing stopped"
exit 1
fi

它给出了oclint not found, analyzing stopped

请给我一个解决方案。

您可以从:http://archives.oclint.org/nightly/oclint-0.9.dev.02251e4-x86_64-darwin-14.0.0.0.0.0.tar.gzpar.gz

要进入您的Xcode项目,您可以使用以下链接:http://docs.oclint.org/en/dev/guide/xcode.html

以下是我用来生成HTML文件的脚本。

oclint_home是Oclint下载文件夹的路径。我将文件夹重命名为OclinTrease。

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"

html报告才会生成且仅当您的构建成功时,您才能将生成的报告路径和脚本报告检查到Xcode的日志Navigator中。

相关内容

  • 没有找到相关文章