infer 编译代码审查命令记录
infer -- xcodebuild -target <target name> -configuration <build configuration> -sdk iphonesimulator
/Users/walkerjiang/Desktop/infer/infer-osx-v0.4.0/infer/bin/infer
xcodebuild clean -sdk iphonesimulator9.0 -configuration Debug
/Users/walkerjiang/Desktop/infer/infer-osx-v0.4.0/infer/bin/infer -- xcodebuild -sdk iphonesimulator9.0 -configuration Debug
/Users/walkerjiang/Desktop/infer/infer-osx-v0.4.0/infer/bin/inferTraceBugs
xcodebuild -workspace 项目根目录/项目名.xcworkspace -scheme 项目名 ONLY_ACTIVE_ARCH=NO TARGETED_DEVICE_FAMILY=1 DEPLOYMENT_LOCATION=YES
xcodebuild -workspace LHand.xcworkspace -scheme LHand ONLY_ACTIVE_ARCH=NO TARGETED_DEVICE_FAMILY=1 DEPLOYMENT_LOCATION=YES
xcodebuild clean -sdk iphonesimulator9.0 -configuration Debug
xcodebuild -workspace LHand.xcworkspace -scheme LHand ONLY_ACTIVE_ARCH=NO TARGETED_DEVICE_FAMILY=1 DEPLOYMENT_LOCATION=YES -configuration Debug
xcodebuild -workspace LHand.xcworkspace -scheme LHand ONLY_ACTIVE_ARCH=NO -configuration Debug
//
xcodebuild -workspace LHand.xcworkspace -scheme LHand -sdk iphonesimulator
/Users/walkerjiang/Desktop/infer/infer-osx-v0.4.0/infer/bin/infer -- xcodebuild -workspace LHand.xcworkspace -scheme LHand -sdk iphonesimulator
//android infer 查看过程
1. cd android/ZHand 目录
android update project -p . -t android-20
2. cd android/libary 目录
android update project -p . -t android-2
3. cd android/ZHand 目录
infer -- ant debug
4. 最后去 infer-out 查看最终结果
//java 项目的编译过程
infer -- mvn compile -Dmaven.test.skip=true -f ../pom-smart.xml
infer -- mvn compile -Dmaven.test.skip=true -f ../pom-im.xml (no bugs)
infer -- mvn compile -Dmaven.test.skip=true -f ../pom-manage.xml
infer -- mvn compile -Dmaven.test.skip=true -f ../pom-map.xml (no bugs)
infer -- mvn compile -Dmaven.test.skip=true -f ../pom-msg.xml (no bugs)
infer -- mvn compile -Dmaven.test.skip=true -f ../pom-office.xml (no bugs)
infer -- mvn compile -Dmaven.test.skip=true -f ../pom-schedule.xml
infer -- mvn compile -Dmaven.test.skip=true -f ../pom-storage.xml
infer -- mvn compile -Dmaven.test.skip=true -f ../pom-wap.xml (no bugs)
infer 编译代码审查命令记录的更多相关文章
- 重编译Linux命令源代码
转: http://blog.csdn.net/endoresu/article/details/6967435 以su命令为例. 查看su命令的路径: # which su /bin/su 查看su ...
- MYSQL存储过程中常使用的命令记录
MYSQL存储过程中常使用的命令记录 1.触发器trigger 查看:show triggers; 2.存储过程procedure 查看:show procedure status; 查看详细:sho ...
- 编译u-boot命令和u-boot常用命令
一.编译u-boot命令 1.配置开发板 #make TQ2440_config 2.编译 #make all 3.交叉编译器是crosstools_3.4.5_softfloat” 使用4.3.3版 ...
- Linux命令记录。
引用:http://www.cnblogs.com/xiaoluo501395377/archive/2013/03/31/2992500.html 首先,需要确定的是知道的是:对于Linux系统来说 ...
- Bash shell命令记录和CentOS的一些技巧
①CentOS的实用技巧: 一.按下ctrl+alt+F2可由图形界面切换至命令行(shell窗口),按下ctrl+alt+F1可由命令行切换至图形界面(前提是安装CentOS时软件选择项选择安装了图 ...
- Linux服务器时间相关命令记录
前言 以往安装服务器时间都是正常,但是最近服务器的时间经常出现问题,所以在安装配置完成服务器之后需要对服务器的时间进行测试,如果服务器时间异常,那么当程序去取系统时间的时候就会出现问题. 时间相关命令 ...
- 编译zpool命令
环境:192.168.50.239(在 illumos源码中编译zpool命令) PS:由于对zpool命令的工作原理不熟悉,所以编译,可在其中加入调试语句来明白其原理 首先介绍 illumos-so ...
- Vim 命令记录与回放
步骤如下: q+(a..z)寄存器名: 执行你要执行的操作: q 结束操作: 调用为@+寄存器: 列子如下: 在写PHP 程序时用的比较多的是创建函数: 如 function add_in(){ } ...
- Centos下磁盘管理的常用命令记录(如查找大文件)
Centos下磁盘管理的常用命令记录 查看系统磁盘空间占用,使用命令: df -h 结果: 查看磁盘inode使用情况,如果inode用完了,磁盘就没法写入新的内容了: df -i 结果: 如何查找磁 ...
随机推荐
- python几个重要的函数(lambda,filter,reduce,map,zip)
一.匿名函数lambda lambda argument1,argument2,...argumentN :expression using arguments 1.lambda是一个表达式,而不是一 ...
- 配置WCF
出处:http://blog.csdn.net/fangxing80/article/details/6106228 前面一篇文章<WCF 学习总结1 -- 简单实例>一股脑儿展示了几种W ...
- 使用 mybatis和oracle 数据库出现的问题
mybatis 官网教程 http://www.mybatis.org/mybatis-3/zh/dynamic-sql.html 出现 Could not set parameters for ma ...
- AC日记——Success Rate codeforces 807c
Success Rate 思路: 水题: 代码: #include <cstdio> #include <cstring> #include <iostream> ...
- python 去掉所有空白字符【解决】
今天用python从access数据库读取内容,组合成sql语句时,空白字符把我给搞疯了.... 所幸找到了一个好办法: ''.join(s.split())
- codeforces Round #440 C Maximum splitting【数学/素数与合数/思维/贪心】
C. Maximum splitting time limit per test 2 seconds memory limit per test 256 megabytes input standar ...
- hdu6156
hdu6156 题意 求 \([2, 36]\) 进制下,给定区间内的数是回文数的个数.每存在一个回文数,答案加上该回文数的进制. 分析 10进制下回文数是 数位DP 很常见的问题,这道题只需要把在转 ...
- RPD Volume 168 Issue 4 March 2016 评论2
Influence of the phantom shape (slab, cylinder or Alderson) on the performance of an Hp(3) eye dosem ...
- 简化的INSERT语句
INSERT语句中也并不需要我们指定表中的所有列,比如在插入数据的时候某些字段没有值,我们可以忽略这些字段.下面我们插入一条没有备注信息的数据: INSERT INTO T_Person(FAge,F ...
- [UOJ198]时空旅行
看懂题目就知道$y,z$是没用的,这题相当于是给一堆$(x_i,c_i)$和询问$x_q$,要求$(x_q-x_i)^2+c_i$的最大值 先把这个式子拆开:$-2x_ix_q+x_i^2+c_i+x ...