鸿达兴业 怎么样:Android编译中m、mm、mmm的区别

来源:百度文库 编辑:九乡新闻网 时间:2024/05/03 06:00:09

在Android SourceCode中有envsetup.sh档案,当执行过此档案后,可以大幅将build的过程简单化、自动化

此档案在src(android sourcecode 位置)/build/中

所以可以执行以下指令
cd /src/build/

. envsetup.sh

可以使用help来检示有哪些指令可以使用

Invoke ". build/envsetup.sh" from your shell to add the followingfunctions to your environment:

- croot: Changes directory to the top of the tree.
- 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 supplieddirectories.
- cgrep: Greps on all local C/C++ files.
- hgrep: Greps on all local C/C++ header files.
- jgrep: Greps on all local Java files.
- mkgrep: Greps on all local make files.
- rcgrep: Greps on all local .rc files.
- resgrep: Greps on all local res/*.xml files.
- shgrep: Greps on all local .sh files.
- godir: Go to the directory containing a file.

其中对模组的编译有辅助说明的是tapas、m、mm、mmm这几个指令

其中mmm后面要跟模组的根目录,不是所有的目录下都有子模组,那些含有Android.mk档案目录才是模组的根目录,模组名可以从Android.mk的LOCAL_MODULE或者LOCAL_PACKAGE_NAME变数中得到。

单独编译某模组,需要在mmm后面指定模组路径,例如编译external 中的jpeg

root@ubuntu:/home/android/src#mmm external/jpeg/
============================================
PLATFORM_VERSION_CODENAME=REL
PLATFORM_VERSION=2.1-update1
TARGET_PRODUCT=generic
TARGET_BUILD_VARIANT=eng
TARGET_SIMULATOR=
TARGET_BUILD_TYPE=release
TARGET_ARCH=arm
HOST_ARCH=x86
HOST_OS=linux
HOST_BUILD_TYPE=release
BUILD_ID=ECLAIR
============================================
make: Entering directory `/home/android/src'
Target buildinfo: out/target/product/generic/root/default.prop
Target buildinfo:out/target/product/generic/system/build.prop
Copy: out/target/product/generic/system/etc/apns-conf.xml
make: Leaving directory `/home/android/src'
root@ubuntu:/home/android/src#


或者可用 mm 再欲编译的模组目录下执行
root@ubuntu:/home/android/src/external/jpeg#mm
============================================
PLATFORM_VERSION_CODENAME=REL
PLATFORM_VERSION=2.1-update1
TARGET_PRODUCT=generic
TARGET_BUILD_VARIANT=eng
TARGET_SIMULATOR=false
TARGET_BUILD_TYPE=release
TARGET_ARCH=arm
HOST_ARCH=x86
HOST_OS=linux
HOST_BUILD_TYPE=release
BUILD_ID=ECLAIR
============================================
make: Entering directory `/home/android/src'
Copy: out/target/product/generic/system/etc/apns-conf.xml
make: Leaving directory `/home/android/src'
root@ubuntu:/home/android/src/external/jpeg#


或者可用 m 编译全部的模组
root@ubuntu:/home/android/src#m

你也可以在src目录下直接执行make module name:

打开看 ./external/jpeg/Android.mk

看到裡面模组名称为 libjpeg

LOCAL_MODULE:= libjpeg

这样你就可以直接打模组名称编译

cd ~/android/src
make libjpeg

也可以在登入时自动执行此 script,编辑 ~/.bashrc 或其他 shell 的 rc 档,加入此 script 即可

# invoke android envsetup.sh
source ~/android/build/envsetup.sh