對於像我這麼個對unix系統不怎麼懂的門外漢,下android的源碼真的是務必的受折磨。經曆的一整天的失敗後終於在找到別人最近寫的教程後成功下載。先奉上原文:
這兩天著手編譯源碼的準備工作,在此記錄下過程,方便自己備份的同時也希望能對後來者有所協助。
Attention:本文環境是在ubuntu 11.04下擷取並編譯android 2.3.3的源碼,
過程參考了easwy的博文:http://www.2cto.com/kf/201111/110741.html
以及google官網http://source.android.com/source/downloading.html 。
官網上的要求資訊為:
In general you will need:
• Python 2.4 -- 2.7, which you can download from python.org.
• JDK 6 if you wish to build Gingerbread or newer; JDK 5 for Froyo or older. You can download both from java.sun.com.
• Git 1.5.4 or newer. You can find it at git-scm.com.
• (optional) Valgrind, a tool that will help you find memory leaks, stack corruption, array bounds overflows, etc. Download from valgrind.org.
另外補充:需要6GB以上磁碟空間,依賴的deb包:flex、bison、gperf、libsdl-dev、libesd0-dev、libwxgtk2.6-dev、build-essential、zip、curl
一、下載前準備工作
首先,準備好所需磁碟空間後,就來安裝開發過程中需要的一些開發包,在終端中執行以下命令:
$ sudo apt-get install git-core gnupg flex bison gperf libsdl1.2-dev libesd0-dev libwxgtk2.6-dev build-essential zip curl libncurses5-dev zlib1g-dev
在此處,需要注意兩點:1.libsdl版本為1.2;2.zlib1g-dev別看錯了是1而不是l,當然非手敲的tx就不存在這個問題了。
然後需要安裝java環境,直接在終端查看下version:
wayne@ubuntu:~$ java -version
程式“java”已包含在下列軟體包中:
* gcj-4.4-jre-headless
* gcj-4.5-jre-headless
* openjdk-6-jre-headless
請嘗試:sudo apt-get install <選定的軟體包>
輸入:sudo apt-get install openjdk-6-jre-headless,安裝就ok了,再查看下version:
wayne@ubuntu:~$ java -version
java version "1.6.0_22"
OpenJDK Runtime Environment (IcedTea6 1.10.2) (6b22-1.10.2-0ubuntu1~11.04.1)
OpenJDK Server VM (build 20.0-b11, mixed mode)
jdk就安裝好了。
二、下載源碼
現在我們已經準備好了android源碼開發所需的環境(無錯誤),下載源碼的過程由於Android的源碼很是龐大,需要分Android源碼和核心兩部分擷取。核心部分的源碼我暫時是不用的,所以這裡只下載源碼。
1.先建立一個檔案夾存放Android目錄,並初始化repo:
wayne@ubuntu:~$ mkdir Android
wayne@ubuntu:~$ cd Android
wayne@ubuntu:~/Android$ mkdir bin
wayne@ubuntu:~/Android$ cd bin
wayne@ubuntu:~/Android/bin$ curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo >repo
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 19731 100 19731 0 0 14034 0 0:00:01 0:00:01 --:--:-- 17157
在這裡,幾個月前http://android.git.kernel.org/已經無法訪問了,很多朋友如果用的是這個源下載網站,就會出現如下情況:
wayne@ubuntu:~/Android/bin$ curl http://android.git.kernel.org/repo >repo
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 244 100 244 0 0 75 0 0:00:03 0:00:03 --:--:-- 976
然後在之後的代碼初始化時就會出現如下錯誤:
./bin/repo: 行1: 未預期的符號`newline' 附近有語法錯誤
./bin/repo: 行1: `<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">'
2.現在繼續。建立存放源碼目錄source,初始化所需的android源碼版本,在終端執行如下命令:
wayne@ubuntu:~/Android/bin$ sudo chmod a+x repo
wayne@ubuntu:~/Android/bin$ cd
wayne@ubuntu:~$ cd Android/source/
wayne@ubuntu:~/Android/source$ ../bin/repo init -u https://android.googlesource.com/platform/manifest -b android-2.3.3_r1
gpg: 鑰匙環‘/home/wayne/.repoconfig/gnupg/secring.gpg’已建立
gpg: 鑰匙環‘/home/wayne/.repoconfig/gnupg/pubring.gpg’已建立
gpg: /home/wayne/.repoconfig/gnupg/trustdb.gpg:建立了信任度資料庫
gpg: 密鑰920F5C65:公開金鑰“Repo Maintainer <repo@android.kernel.org>”已匯入
gpg: 合計被處理的數量:1
gpg: 已匯入:1
Get https://android.googlesource.com/tools/repo
remote: Counting objects: 1414, done
remote: Finding sources: 100% (78/78)
remote: Total 1414 (delta 917), reused 1414 (delta 917)
Receiving objects: 100% (1414/1414), 429.88 KiB | 169 KiB/s, done.
Resolving deltas: 100% (917/917), done.
From https://android.googlesource.com/tools/repo
* [new branch] maint -> origin/maint
* [new branch] master -> origin/master
* [new branch] stable -> origin/stable
...www.2cto.com
這樣下來之後,會要求輸入使用者名稱和郵箱地址,隨意寫個就ok。
初始化完畢之後會出現:
repo initialized in /home/wayne/Android/source
現在完成初始化之後便可以下載了,在終端執行如下命令,開始下載:
wayne@ubuntu:~/Android/source$ ../bin/repo sync
下載全部的源碼需要很長時間,現在正在經曆漫長的等待……
過程中時常看一下,也許會出錯而中斷:
error: Exited sync due to fetch errors
遇到這些問題時,重新執行一遍../bin/repo sync就ok。
三、編譯源碼
編譯部分要等待下載完成後再記錄了,稍後奉上。
摘自 精神邋遢的民工
來自cto論壇。