乙個android.mk file用來向編譯系統描述你的源**。具體來說:該檔案是gnu makefile的一小部分,會被編譯系統解析一次或多次。你可以在每乙個android.mk file中定義乙個或多個模組,你也可以在幾個模組中使用同乙個源**檔案。編譯系統為你處理許多細節問題。例如,你不需要在你的android.mk中 列出標頭檔案和依賴檔案。ndk編譯系統將會為你自動處理這些問題。這也意味著,在公升級ndk後,你應該得到新的toolchain/platform支 持,而且不需要改變你的android.mk檔案。
先看乙個簡單的例子:乙個簡單的"hello world",比如下面的檔案:
sources/helloworld/helloworld.c
sources/helloworld/android.mk
相應的android.mk檔案會象下面這樣:
---------- cut here ------------------
local_path := $(call my-dir)
include $(clear_vars)
local_module
:= helloworld
local_src_files := helloworld.c
include $(build_shared_library)
---------- cut here ------------------
我們來解釋一下這幾行**:
local_path := $(call my-dir)
乙個android.mk file首先必須定義好local_path變數。它用於在開發樹中查詢原始檔。在這個例子中,巨集函式』my-dir』, 由編譯系統提供,用於返回當前路徑(即包含android.mk file檔案的目錄)。
include $( clear_vars)
clear_vars 由編譯系統提供,指定讓gnu makefile為你清除許多local_***變數(例如 local_module, local_src_files, local_static_libraries, 等等...),除local_path 。這是必要的,因為所有的編譯控制檔案都在同乙個gnu make執行環境中,所有的變數都是全域性的。
local_module := helloworld
local_module變數必須定義,以標識你在android.mk檔案中描述的每個模組。名稱必須是唯一的,而且不包含任何空格。注意編譯系統會自動產生合適的字首和字尾,換句話說,乙個被命名為'foo'的共享庫模組,將會生成'libfoo.so'檔案。
local_src_files := helloworld.c
local_src_files變數必須包含將要編譯打包進模組中的c或c++源**檔案。注意,你不用在這裡列出標頭檔案和包含檔案,因為編譯系統將會自動為你找出依賴型的檔案;僅僅列出直接傳遞給編譯器的源**檔案就好。
在android中增加本地程式或者庫,這些程式和庫與其所載路徑沒有任何關係,只和它們的android.mk檔案有關係。android.mk和普通的makefile有所不同,它具有統一的寫法,主要包含一些系統公共的巨集。
在乙個android.mk中可以生成多個可執行程式、動態庫和靜態庫。
1,編譯應用程式的模板:
#test exe
local_path := $(call my-dir)
#include $(clear_vars)
local_src_files:= main.c
local_module:= test_exe
#local_c_includes :=
#local_static_libraries :=
#local_shared_libraries :=
include $(build_executable)
(菜 鳥級別解釋::=是賦值的意思,$是引用某變數的值)local_src_files中加入原始檔路徑,local_c_includes 中加入所需要包含的標頭檔案路徑,local_static_libraries加入所需要鏈結的靜態庫(*.a)的名 稱,local_shared_libraries中加入所需要鏈結的動態庫(*.so)的名稱,local_module表示模組最終的名 稱,build_executable表示以乙個可執行程式的方式進行編譯。
2,編譯靜態庫的模板:
#test static lib
local_path := $(call my-dir)
include $(clear_vars)
local_src_files:= /
helloworld.c
local_module:= libtest_static
#local_c_includes :=
#local_static_libraries :=
#local_shared_libraries :=
include $(build_static_library)
一般的和上面相似,build_static_library表示編譯乙個靜態庫。
3,編譯動態庫的模板:
#test shared lib
local_path := $(call my-dir)
include $(clear_vars)
local_src_files:= /
helloworld.c
local_module:= libtest_shared
target_prelink_modules := false
#local_c_includes :=
#local_static_libraries :=
#local_shared_libraries :=
include $(build_shared_library)
一般的和上面相似,build_shared_library表示編譯乙個靜態庫。
以上三者的生成結果分別在如下,generic依具體target會變:
out/target/product/generic/obj/executable
out/target/product/generic/obj/static_library
out/target/product/generic/obj/shared_library
每個模組的目標資料夾分別為:
可執行程式:***_intermediates
靜態庫: ***_static_intermediates
動態庫: ***_shared_intermediates
另外,在android.mk檔案中,還可以指定最後的目標安裝路徑,用local_module_path和local_unstripped_path來指定。不同的檔案系統路徑用以下的巨集進行選擇:
target_root_out:表示根檔案系統。
target_out:表示system檔案系統。
target_out_data:表示data檔案系統。
用法如:
cal_module_path:=$(target_root_out)
less 基礎用法和技巧
寫在前 less是css 預編譯,記錄less 基本用法 w3c詳情位址 中文文件位址 less 巢狀規則 container p 編譯後 container h1 container pless 操作 less 支援一些算數運算 例子 fontsize 10px font size fontsiz...
檔案的讀和寫(基礎用法)
主要介紹下fstream filestream 檔案流 ostream,istream。涉及到檔案的一些流操作要包含標頭檔案fstream include ofstream 檔案寫操作,記憶體寫入儲存 istream 檔案讀操作,儲存讀ofstream out out.open hello.txt ...
Linux sed命令(基礎和高階用法)
1 sed是流編譯器,是文字處理非常常用的工具,也是使用正規表示式進行匹配,預設為基準模式。基本格式為 1 sed option script file 其中script為 pattern action pattern為正規表示式,action為編輯操作。如果沒有pattern,則對所有行進行act...