Android的m、mm、mmm编译命令的使用
Android源码目录下的build/envsetup.sh文件,描述编译的命令
- m: Makes from the top of the tree.
- mm: Builds all of the modules in the current directory.
- mmm: Builds all of the modules in the supplied directories.
要想使用这些命令,首先需要在android源码根目录执行. build/envsetup.sh 脚本设置环境
m:编译所有的模块
mm:编译当前目录下的模块,当前目录下要有Android.mk文件
mmm:编译指定路径下的模块,指定路径下要有Android.mk文件
下面举个例子说明,假设我要编译android下的\hardware\libhardware_legacy\power模块,当前目录为源码根目录,方法如下:
1、. build/envsetup.sh
2、mmm hardware/libhardware_legacy/power/
或者 :
1、. build/envsetup.sh
2、cd hardware/libhardware_legacy/power/
3、mm
相关推荐
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
源码佳人 2011-08-26
九天银河技术 2018-08-03
magiclake 2018-08-13
hejunbinfendou 2018-01-16
xkorey 2017-04-08