oclint
1.1、oclint简介
是什么 ?:a static code analysis tool for improving quality and reducing defects by inspecting CC++Objective-C source code.
开发语言:C++
官方主页:http://oclint.org
源码仓库:https://github.com/oclint/oclint
1.2、通过包管理器安装oclint
操作系统包管理器安装命令
macOSHomeBrewbrew install oclint

Arch Linux

ArcoLinux

Manjaro Linux

yayyay -Syyu --noconfirm
yay -S    --noconfirm oclint
1.3、通过下载已经编译好的二进制压缩包进行安装oclint

step1、安装依赖

所有时Terminal + Shell + GNU CoreUtils
下载时cURL
解压时tar + gzip
运行时glibc ( libc.sold-linux-x86-64.so )

step2、使用curl下载编译好的oclint二进制压缩包 (

curl -LO https://github.com/oclint/oclint/releases/download/v0.13.1/oclint-0.13.1-x86_64-darwin-17.4.0.tar.gz

step3、使用tar解压oclint压缩包

tar vxf oclint-0.13.1-x86_64-darwin-17.4.0.tar.gz -C ~/bin

step4、配置环境变量

export PATH=~/bin/oclint-0.13.1/bin:$PATH
1.4、oclint中包含的命令