菜鸟教程小白 发表于 2022-12-13 10:44:18

ios - OCLint 不在系统路径中


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

<p><strong>编辑:</strong></p>

<p>当我将 OCLint 脚本的一部分作为 </p>

<pre><code>hash oclint &amp;&gt; /dev/null
if [ $? -eq 1 ]; then
echo &gt;&amp;2 &#34;oclint not found, analyzing stopped&#34;
exit 1
fi
</code></pre>

<p>它给出<code>oclint not found,正在分析停止</code>。</p>

<p>请给我一个解决方案。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以从 <a href="http://archives.oclint.org/nightly/oclint-0.9.dev.02251e4-x86_64-darwin-14.0.0.tar.gz" rel="noreferrer noopener nofollow">http://archives.oclint.org/nightly/oclint-0.9.dev.02251e4-x86_64-darwin-14.0.0.tar.gz</a> 下载 oclint </p>

<p>要集成到您的 xcode 项目中,您可以使用此链接:<a href="http://docs.oclint.org/en/dev/guide/xcode.html" rel="noreferrer noopener nofollow">http://docs.oclint.org/en/dev/guide/xcode.html</a> </p>

<p>下面是我用来生成 html 文件的脚本。</p>

<p>OCLINT_HOME 是 oclint 下载文件夹的路径。我已将文件夹重命名为 oclintrelease。</p>

<pre><code>OCLINT_HOME=/Users/Dheeraj/Downloads/oclintrelease
export PATH=$OCLINT_HOME/bin:$PATH

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

cd ${TARGET_TEMP_DIR}

if [ ! -f compile_commands.json ]; then
echo &#34;[*] compile_commands.json not found, possibly clean was performed&#34;
echo &#34;[*] starting xcodebuild to rebuild the project..&#34;
# 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 &lt;options&gt;| tee ${TARGET_TEMP_DIR}/xcodebuild.log

echo &#34;[*] transforming xcodebuild.log into compile_commands.json...&#34;
cd ${TARGET_TEMP_DIR}
#transform it into compile_commands.json
oclint-xcodebuild

fi

echo &#34;[*] starting analyzing&#34;
cd ${TARGET_TEMP_DIR}

oclint-json-compilation-database -v oclint_args &#34;-report-type html -o $OCLINT_HOME/report.html&#34;
</code></pre>

<p>您的报告将使用上述脚本生成到 OCLINT_HOME 中提供的路径。</p>

<p>如果您想在派生数据文件夹中生成报告,请将最后一行替换为:</p>

<pre><code>oclint-json-compilation-database -v oclint_args &#34;-report-type html -o report.html&#34;
</code></pre>

<p>当且仅当您的构建成功并且您可以将生成的报告路径和脚本报告检查到 Xcode 的 Log Navigator 时,才会生成 HTML 报告。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - OCLint 不在系统路径中,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/30052686/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/30052686/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - OCLint 不在系统路径中