Android 完成编译的时候先执行 source build/envsetup.sh。 在这个shell 脚本中定义了 help, croot, m, mm, mmm 等 function
之后在当前目录下执行help 可以发现它给出的信息和此前见过linux 下面help 的信息不一样了:
Invoke ". build/envsetup.sh" from your shell to add the following functions 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 supplied directories.
- cgrep: Greps on all local C/C++ files.
- jgrep: Greps on all local Java files.
- resgrep: Greps on all local res/*.xml files.
- godir: Go to the directory containing a file.
source 命令会把对应脚本中的内容读取到当前的bash 解释器中,在当前的执行环境中执行;其中定义的 function 以及通过 export 声明的变量等在 source 执行结束之后依然存在于当前的bash 环境中。比如我们常用的 source .bashrc 或者 source .profile 等目的是为了引用刚刚改动过的环境变量。
561 function m()
562 {
563 T=$(gettop)
564 if [ "$T" ]; then
565 make -C $T $@
566 else
567 echo "Couldn't locate the top of the tree. Try setting TOP."
568 fi
569 }
570
当你在任何一个目录下打 m 的时候, 它会执行上面的function.
~/Android/an403/external/webkit/Source/WebKit/android/jni/test$ gettop
/home/mypc/Android/an403
make -C /home/yajun/Android/an403 showcommands -d
当然如果 当前的目录不在源码树里面,gettop 就返回空,这样 m 的结果就时
~$ m
Couldn't locate the top of the tree. Try setting TOP.
591 function mm()
592 {
593 # If we're sitting in the root of the build tree, just do a
594 # normal make.
595 if [ -f build/core/envsetup.mk -a -f Makefile ]; then
596 make $@
597 else
598 # Find the closest Android.mk file.
599 T=$(gettop)
600 local M=$(findmakefile)
601 # Remove the path to top as the makefilepath needs to be relative
602 local M=`echo $M|sed 's:'$T'/::'`
603 if [ ! "$T" ]; then
604 echo "Couldn't locate the top of the tree. Try setting TOP."
605 elif [ ! "$M" ]; then
606 echo "Couldn't locate a makefile from the current directory."
607 else
608 ONE_SHOT_MAKEFILE=$M make -C $T all_modules $@
609 fi
610 fi
611 }
571 function findmakefile()
572 {
573 TOPFILE=build/core/envsetup.mk
574 # We redirect cd to /dev/null in case it's aliased to
575 # a command that prints something as a side-effect
576 # (like pushd)
577 local HERE=$PWD
578 T=
579 while [ \( ! \( -f $TOPFILE \) \) -a \( $PWD != "/" \) ]; do
580 T=$PWD
581 if [ -f "$T/Android.mk" ]; then
582 echo $T/Android.mk
583 cd $HERE > /dev/null
584 return
585 fi
586 cd .. > /dev/null
587 done
588 cd $HERE > /dev/null
589 }
439 ifneq ($(ONE_SHOT_MAKEFILE),)
440 # We've probably been invoked by the "mm" shell function
441 # with a subdirectory's makefile.
442 include $(ONE_SHOT_MAKEFILE)
443 # Change CUSTOM_MODULES to include only modules that were
444 # defined by this makefile; this will install all of those
445 # modules as a side-effect. Do this after including ONE_SHOT_MAKEFILE
446 # so that the modules will be installed in the same place they
447 # would have been with a normal make.
448 CUSTOM_MODULES := $(sort $(call get-tagged-modules,$(ALL_MODULE_TAGS)))
449 FULL_BUILD :=
450 # Stub out the notice targets, which probably aren't defined
451 # when using ONE_SHOT_MAKEFILE.
452 NOTICE-HOST-%: ;
453 NOTICE-TARGET-%: ;
454
455 else # ONE_SHOT_MAKEFILE
把其中的变量读取进来:
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := \
main.cpp
# Pull the webkit definitions from the base webkit makefile.
LOCAL_SHARED_LIBRARIES := libwebcore $(WEBKIT_SHARED_LIBRARIES)
LOCAL_LDLIBS := $(WEBKIT_LDLIBS)
LOCAL_MODULE := webcore_test
LOCAL_MODULE_TAGS := optional
include $(BUILD_EXECUTABLE)
LOCAL_MODULE:=
LOCAL_MODULE_PATH:=
LOCAL_MODULE_STEM:=
LOCAL_DONT_CHECK_MODULE:=
LOCAL_CHECKED_MODULE:=
LOCAL_BUILT_MODULE:=
。。。
。。。
在最后一句会 include $(BUILD_EXECUTABLE) 它的定义在:build/core/config.mk:60:BUILD_EXECUTABLE:= $(BUILD_SYSTEM)/executable.mk
ifeq ($(strip $(LOCAL_MODULE_CLASS)),)
LOCAL_MODULE_CLASS := EXECUTABLES
endif
ifeq ($(strip $(LOCAL_MODULE_SUFFIX)),)
LOCAL_MODULE_SUFFIX := $(TARGET_EXECUTABLE_SUFFIX)
endif
include $(BUILD_SYSTEM)/dynamic_binary.mk
ifeq ($(LOCAL_FORCE_STATIC_EXECUTABLE),true)
$(linked_module): $(TARGET_CRTBEGIN_STATIC_O) $(all_objects) $(all_libraries) $(TARGET_CRTEND_O)
$(transform-o-to-static-executable)
else
$(linked_module): $(TARGET_CRTBEGIN_DYNAMIC_O) $(all_objects) $(all_libraries) $(TARGET_CRTEND_O)
$(transform-o-to-executable)
endif
到这里相信写过 Makefile 的朋友顿时觉得熟悉了吧,只是这里的 target,dependencies, executable commands 都被变量代替了:
$(linked_module): $(TARGET_CRTBEGIN_DYNAMIC_O) $(all_objects) $(all_libraries) $(TARGET_CRTEND_O)
$(transform-o-to-executable)
include $(BUILD_SYSTEM)/dynamic_binary.mk
$(warning "-------------------------------------------")
$(warning "linked_modle=$(linked_module)")
$(warning "TARGET_CRTBEGIN_DYNAMIC_O=$(TARGET_CRTBEGIN_DYNAMIC_O)")
$(warning "all_objects=$(all_objects)")
$(warning "all_libraries=$(all_libraries)")
$(warning "TARGET_CRTEND_O=$(TARGET_CRTEND_O)")
$(warning "transform-o-to-executable=$(transform-o-to-executable)")
$(warning "--------------------------------------------")
ifeq ($(LOCAL_FORCE_STATIC_EXECUTABLE),true)
build/core/executable.mk:16: "-------------------------------------------"
build/core/executable.mk:17: "linked_modle=out/target/product/generic/obj/EXECUTABLES/webcore_test_intermediates/LINKED/webcore_test"
build/core/executable.mk:18: "TARGET_CRTBEGIN_DYNAMIC_O=out/target/product/generic/obj/lib/crtbegin_dynamic.o"
build/core/executable.mk:19: "all_objects= out/target/product/generic/obj/EXECUTABLES/webcore_test_intermediates/main.o "
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 "
build/core/executable.mk:21: "TARGET_CRTEND_O=out/target/product/generic/obj/lib/crtend_android.o"
build/core/executable.mk:22: "transform-o-to-executable=@mkdir -p
@echo "target Executable: ()"
-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"
build/core/executable.mk:23: "--------------------------------------------"