android 编译模块

编译模块

Android中的一个应用程序可以单独编译,编译后要重新生成system.img

在源码目录下执行

 
  1. . build/envsetup.sh (.后面有空格) 

就多出一些命令:

 

 
  1. - croot:   Changes directory to the top of the tree.  
  2. - m:       Makes from the top of the tree.  
  3. - mm:      Builds all of the modules in the current directory.  
  4. - mmm:     Builds all of the modules in the supplied directories.  
  5. - cgrep:   Greps on all local C/C++ files.  
  6. - jgrep:   Greps on all local Java files.  
  7. - resgrep: Greps on all local res/*.xml files.  
  8. - godir:   Go to the directory containing a file. 

 

可以加—help查看用法

我们可以使用mmm来编译指定目录的模块,如编译联系人:

 

 
  1. mmm packages/apps/Contacts/ 

 

编完之后生成两个文件:

 

 
  1. out/target/product/generic/data/app/ContactsTests.apk  
  2. out/target/product/generic/system/app/ Contacts.apk 

 

 

以上来自网络,自己的总结:

 

 

第一步:huangbing@asd1-linux-desktop:~/dev7227/android$ . build/envsetup.sh
第二步:huangbing@asd1-linux-desktop:~/dev7227/android/external$ cd libyuv420sp2rgb/
第三步:huangbing@asd1-linux-desktop:~/dev7227/android/external/libyuv420sp2rgb$ mm

 

 

以上3部完成 模块的编译,很快!

 

 

 

你可能感兴趣的:(C++,c,linux,android,网络应用)