Mac 静态代码检测工具infer安装

1、通过brew 安装
brew install infer
2、通过源代码安装

# Checkout Infer
git clone https://github.com/facebook/infer.git
cd infer
# Compile Infer
./build-infer.sh java
# install Infer system-wide...
sudo make install
# ...or, alternatively, install Infer into your PATH
export PATH=`pwd`/infer/bin:$PATH

猜你喜欢

转载自blog.csdn.net/weixin_38687303/article/details/130286537