android下m、mm、mmm编译命令的使用
通过查看android源码目录下的build/envsetup.sh文件,可知:
-m:Makesfromthetopofthetree.
-mm:Buildsallofthemodulesinthecurrentdirectory.
-mmm:Buildsallofthemodulesinthesupplieddirectories.
要想使用这些命令,首先需要在android源码根目录执行.build/envsetup.sh
m:编译所有的模块
mm:编译当前目录下的模块,当前目录下要有Android.mk文件
mmm:编译指定路径下的模块,指定路径下要有Android.mk文件
下面举个例子说明,假设我要编译android下的libjpeg模块,当前目录为源码根目录,方法如下:
1、.build/envsetup.sh
2、mmmexternal/jpeg/
或者:
1、.build/envsetup.sh
2、cdexternal/jpeg
3、mm
最后说明一下,envsetup.sh只要source一次就够了,source之后还可以用croot命令返回到源码根目录,很好用。
相关推荐
ThedakeLaugh 2011-12-26
huanglgln 2020-07-19
林大鹏 2020-02-01
贤冰 2019-12-20
herohope 2019-12-16
cyhgogogo 2019-12-15
chenjiazhu 2019-12-04
azhou 2019-12-03
helloworlddm 2011-08-08
magiclake 2015-01-19
ZoeYen 2019-06-29
tangjianft 2016-03-09
xjywp00 2019-06-27
xushxbigbear微信 2013-05-21
九天银河技术 2018-08-03
magiclake 2018-08-13
hejunbinfendou 2018-01-16
xkorey 2017-04-08