閱讀434 返回首頁    go 技術社區[雲棲]


Android編譯中m、mm、mmm 詳解

https://blog.csdn.net/yajun0601/article/details/7309010


  Android 完成編譯的時候先執行  source build/envsetup.sh。  在這個shell 腳本中定義了 help,  croot, m, mm, mmm 等 function

之後在當前目錄下執行help 可以發現它給出的信息和此前見過linux 下麵help 的信息不一樣了:

[plain] view plaincopy
  1. Invoke ". build/envsetup.sh" from your shell to add the following functions to your environment:  
  2. - croot:   Changes directory to the top of the tree.  
  3. - m:       Makes from the top of the tree.  
  4. - mm:      Builds all of the modules in the current directory.  
  5. - mmm:     Builds all of the modules in the supplied directories.  
  6. - cgrep:   Greps on all local C/C++ files.  
  7. - jgrep:   Greps on all local Java files.  
  8. - resgrep: Greps on all local res/*.xml files.  
  9. - godir:   Go to the directory containing a file.  

關於source

source 命令會把對應腳本中的內容讀取到當前的bash 解釋器中,在當前的執行環境中執行;其中定義的 function 以及通過 export 聲明的變量等在 source 執行結束之後依然存在於當前的bash 環境中。比如我們常用的 source .bashrc 或者 source .profile 等目的是為了引用剛剛改動過的環境變量。


m 的解釋

m 的定義如下:
[html] view plaincopy
  1. 561 function m()  
  2. 562 {  
  3. 563     T=$(gettop)  
  4. 564     if [ "$T" ]; then  
  5. 565         make -C $T $@  
  6. 566     else  
  7. 567         echo "Couldn't locate the top of the tree.  Try setting TOP."  
  8. 568     fi  
  9. 569 }  
  10. 570   
當你在任何一個目錄下打 m 的時候, 它會執行上麵的function. 
gettop 返回源碼的頂層目錄,如果這個目錄存在,比如在我的機器上是:
[html] view plaincopy
  1. ~/Android/an403/external/webkit/Source/WebKit/android/jni/test$ gettop  
  2. /home/mypc/Android/an403  

$@ 返回調用這個腳本時傳入的參數
比如我們執行  m showcommands -d
經過 function m 的翻譯後就執行
[html] view plaincopy
  1. make -C /home/yajun/Android/an403 showcommands -d  
當然如果 當前的目錄不在源碼樹裏麵,gettop 就返回空,這樣 m 的結果就時
[html] view plaincopy
  1. ~$ m  
  2. Couldn't locate the top of the tree.  Try setting TOP.  

下麵主要講解mm 

mm 的定義如下,功能是 Builds all of the modules in the current directory.
[html] view plaincopy
  1. 591 function mm()  
  2. 592 {  
  3. 593     # If we're sitting in the root of the build tree, just do a  
  4. 594     # normal make.  
  5. 595     if [ -f build/core/envsetup.mk -a -f Makefile ]; then  
  6. 596         make $@  
  7. 597     else  
  8. 598         # Find the closest Android.mk file.  
  9. 599         T=$(gettop)  
  10. 600         local M=$(findmakefile)  
  11. 601         # Remove the path to top as the makefilepath needs to be relative  
  12. 602         local M=`echo $M|sed 's:'$T'/::'`  
  13. 603         if [ ! "$T" ]; then  
  14. 604             echo "Couldn't locate the top of the tree.  Try setting TOP."  
  15. 605         elif [ ! "$M" ]; then  
  16. 606             echo "Couldn't locate a makefile from the current directory."  
  17. 607         else  
  18. 608             ONE_SHOT_MAKEFILE=$M make -C $T all_modules $@  
  19. 609         fi  
  20. 610     fi  
  21. 611 }  

從它的注釋可以看出,當你在某個目錄下執行 mm 的時候,
它首先現判斷當前目錄是不是 TOP 目錄,如果是,就直接開始make 了~
如果不是,就調用findmakefile 尋找 Android.mk , 搜索的路徑是 當前目錄-> 父目錄 -> 父目錄 -> ... -> 到根目錄
[html] view plaincopy
  1. 571 function findmakefile()  
  2. 572 {  
  3. 573     TOPFILE=build/core/envsetup.mk  
  4. 574     # We redirect cd to /dev/null in case it's aliased to  
  5. 575     # a command that prints something as a side-effect  
  6. 576     # (like pushd)  
  7. 577     local HERE=$PWD  
  8. 578     T=   
  9. 579     while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do  
  10. 580         T=$PWD  
  11. 581         if [ -f "$T/Android.mk" ]; then  
  12. 582             echo $T/Android.mk  
  13. 583             cd $HERE > /dev/null  
  14. 584             return  
  15. 585         fi  
  16. 586         cd .. > /dev/null  
  17. 587     done  
  18. 588     cd $HERE > /dev/null  
  19. 589 }  

當在某個目錄下找到Android.mk後,就把它echo 出來。然後 cd $HERE 返回調用 findmakefile 的目錄。
以我在 /home/yajun/Android/an403/external/webkit/Source/WebKit/android/benchmark/ 下執行 mm 為例
findmakefile 的返回結果是 /home/yajun/Android/an403/external/webkit/Source/WebKit/android/benchmark/Android.mk
而 gettop 的返回結果是 /home/yajun/Android/an403
所以執行local M=`echo $M|sed 's:'$T'/::'` 之後, M =external/webkit/Source/WebKit/android/benchmark/Android.mk

ONE_SHOT_MAKEFILE=$M make -C $T all_modules $@ 展開後就是 
ONE_SHOT_MAKEFILE=external/webkit/Source/WebKit/android/benchmark/Android.mk make -C /home/yajun/Android/an403 all_modules

到後麵怎麼make 的?()
上麵的執行就可以看作是:
make -C /home/yajun/Android/an403 all_modules ONE_SHOT_MAKEFILE=external/webkit/Source/WebKit/android/benchmark/Android.mk

接下來的執行會進入到  build/core/main.mk 中,在這裏會 include external/webkit/Source/WebKit/android/benchmark/Android.mk
[plain] view plaincopy
  1. 439 ifneq ($(ONE_SHOT_MAKEFILE),)                                                    
  2. 440 # We've probably been invoked by the "mm" shell function                         
  3. 441 # with a subdirectory's makefile.                                                
  4. 442 include $(ONE_SHOT_MAKEFILE)                                                     
  5. 443 # Change CUSTOM_MODULES to include only modules that were                        
  6. 444 # defined by this makefile; this will install all of those                       
  7. 445 # modules as a side-effect.  Do this after including ONE_SHOT_MAKEFILE           
  8. 446 # so that the modules will be installed in the same place they                   
  9. 447 # would have been with a normal make.                                            
  10. 448 CUSTOM_MODULES := $(sort $(call get-tagged-modules,$(ALL_MODULE_TAGS)))          
  11. 449 FULL_BUILD :=                                                                    
  12. 450 # Stub out the notice targets, which probably aren't defined                     
  13. 451 # when using ONE_SHOT_MAKEFILE.                                                  
  14. 452 NOTICE-HOST-%: ;                                                                 
  15. 453 NOTICE-TARGET-%: ;                                                               
  16. 454                                                                                  
  17. 455 else # ONE_SHOT_MAKEFILE   
把其中的變量讀取進來:
[plain] view plaincopy
  1. LOCAL_PATH:= $(call my-dir)  
  2. include $(CLEAR_VARS)  
  3.   
  4. LOCAL_SRC_FILES := \  
  5.         main.cpp  
  6.   
  7. # Pull the webkit definitions from the base webkit makefile.  
  8. LOCAL_SHARED_LIBRARIES := libwebcore $(WEBKIT_SHARED_LIBRARIES)  
  9. LOCAL_LDLIBS := $(WEBKIT_LDLIBS)  
  10.   
  11. LOCAL_MODULE := webcore_test  
  12.   
  13. LOCAL_MODULE_TAGS := optional  
  14.   
  15. include $(BUILD_EXECUTABLE)  
這一段開始的地方會 include $(CLEAR_VARS), 我們可用在下麵的地方找到
build/core/config.mk:54:CLEAR_VARS:= $(BUILD_SYSTEM)/clear_vars.mk
它所做的事情是Clear out values of all variables used by rule templates.
[plain] view plaincopy
  1. LOCAL_MODULE:=  
  2. LOCAL_MODULE_PATH:=  
  3. LOCAL_MODULE_STEM:=  
  4. LOCAL_DONT_CHECK_MODULE:=  
  5. LOCAL_CHECKED_MODULE:=  
  6. LOCAL_BUILT_MODULE:=  
  7. 。。。  
  8. 。。。  
在最後一句會 include $(BUILD_EXECUTABLE)  它的定義在:build/core/config.mk:60:BUILD_EXECUTABLE:= $(BUILD_SYSTEM)/executable.mk
[plain] view plaincopy
  1. ifeq ($(strip $(LOCAL_MODULE_CLASS)),)  
  2. LOCAL_MODULE_CLASS := EXECUTABLES  
  3. endif  
  4. ifeq ($(strip $(LOCAL_MODULE_SUFFIX)),)  
  5. LOCAL_MODULE_SUFFIX := $(TARGET_EXECUTABLE_SUFFIX)  
  6. endif  
  7.   
  8. include $(BUILD_SYSTEM)/dynamic_binary.mk  
  9.   
  10. ifeq ($(LOCAL_FORCE_STATIC_EXECUTABLE),true)  
  11. $(linked_module): $(TARGET_CRTBEGIN_STATIC_O) $(all_objects) $(all_libraries) $(TARGET_CRTEND_O)  
  12.         $(transform-o-to-static-executable)  
  13. else  
  14. $(linked_module): $(TARGET_CRTBEGIN_DYNAMIC_O) $(all_objects) $(all_libraries) $(TARGET_CRTEND_O)  
  15.         $(transform-o-to-executable)  
  16. endif  
到這裏相信寫過 Makefile 的朋友頓時覺得熟悉了吧,隻是這裏的 target, dependencies, executable commands 都被變量代替了:

[plain] view plaincopy
  1. $(linked_module): $(TARGET_CRTBEGIN_DYNAMIC_O) $(all_objects) $(all_libraries) $(TARGET_CRTEND_O)  
  2.         $(transform-o-to-executable)  

如果想進一步了解這裏做了什麼事情,我們需要知道上麵的變量都是什麼值,最方便的做法是把他們打印出來。
[plain] view plaincopy
  1. include $(BUILD_SYSTEM)/dynamic_binary.mk  
  2. $(warning "-------------------------------------------")  
  3. $(warning "linked_modle=$(linked_module)")  
  4. $(warning "TARGET_CRTBEGIN_DYNAMIC_O=$(TARGET_CRTBEGIN_DYNAMIC_O)")  
  5. $(warning "all_objects=$(all_objects)")  
  6. $(warning "all_libraries=$(all_libraries)")  
  7. $(warning "TARGET_CRTEND_O=$(TARGET_CRTEND_O)")  
  8. $(warning "transform-o-to-executable=$(transform-o-to-executable)")  
  9. $(warning "--------------------------------------------")  
  10. ifeq ($(LOCAL_FORCE_STATIC_EXECUTABLE),true)  
可以然後就可以看出來這裏做要 build 出來的是什麼東西啦:
[plain] view plaincopy
  1. build/core/executable.mk:16: "-------------------------------------------"  
  2. build/core/executable.mk:17: "linked_modle=out/target/product/generic/obj/EXECUTABLES/webcore_test_intermediates/LINKED/webcore_test"  
  3. build/core/executable.mk:18: "TARGET_CRTBEGIN_DYNAMIC_O=out/target/product/generic/obj/lib/crtbegin_dynamic.o"  
  4. build/core/executable.mk:19: "all_objects=   out/target/product/generic/obj/EXECUTABLES/webcore_test_intermediates/main.o           "  
  5. build/core/executable.mk:20: "all_libraries=out/target/product/generic/obj/lib/libwebcore.so out/target/product/generic/obj/lib/libc.so out/target/product/generic/obj/lib/libstdc++.so out/target/product/generic/obj/lib/libm.so  "  
  6. build/core/executable.mk:21: "TARGET_CRTEND_O=out/target/product/generic/obj/lib/crtend_android.o"  
  7. build/core/executable.mk:22: "transform-o-to-executable=@mkdir -p   
  8. @echo "target Executable:  ()"  
  9.   -nostdlib -Bdynamic -Wl,-T,build/core/armelf.x -Wl,-dynamic-linker,/system/bin/linker -Wl,--gc-sections -Wl,-z,nocopyreloc -o  -Lout/target/product/generic/obj/lib -Wl,-rpath-link=out/target/product/generic/obj/lib   out/target/product/generic/obj/lib/crtbegin_dynamic.o       -Wl,-z,noexecstack -Wl,--icf=safe -Wl,--fix-cortex-a8   prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/bin/../lib/gcc/arm-linux-androideabi/4.4.3/armv7-a/libgcc.a out/target/product/generic/obj/lib/crtend_android.o"  
  10. build/core/executable.mk:23: "--------------------------------------------"  

我們現看一下上麵第八行的 dynamic_binary.mk 做了什麼事情:
include $(BUILD_SYSTEM)/dynamic_binary.mk

最後更新:2017-04-04 07:03:03

  上一篇:go Android 重新編譯資源文件
  下一篇:go 利用mm命令編譯Android模塊