源码下载
下载时间:2018-04-28
系统版本:android-6.0.1_r63
大小:107G左右
环境要求
OS ubuntu16.04
安装repo
安装curl
安装git
上面的工具环境如果没有,可以自己使用apt-get命令去安装,方法也很简单,不在此处赘述。
准备工作
1.安装jdk,这个是jdk1.8,我下载版本编译需要jdk1.7
sudo apt-get update
sudo apt-get install openjdk-8-jdk
2.安装必要读组建包
sudo apt-get install git-core gnupg flex bison gperf build-essential zip curl zlib1g-dev gcc-multilib g++-multilib libc6-dev-i386 lib32ncurses5-dev x11proto-core-dev libx11-dev lib32z-dev ccache libgl1-mesa-dev libxml2-utils xsltproc unzip
1.下载 repo 工具
mkdir ~/bin
PATH=~/bin:$PATH
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
chmod a+x ~/bin/repo
2.建立工作目录
mkdir WORKING_DIRECTORY
cd WORKING_DIRECTORY
3.初始化仓库
repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest
注:如果提示无法连接到 gerrit.googlesource.com,请参照以下方法
下载
curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo -o repo
chmod +x repo
为了方便可以将其拷贝到你的PATH里。
更新
repo的运行过程中会尝试访问官方的git源更新自己,如果想使用tuna的镜像源进行更新,可以将如下内容复制到你的~/.bashrc里
cd ~/.bashrc
export REPO_URL='https://mirrors.tuna.tsinghua.edu.cn/git/git-repo/'
并重启终端模拟器。
4.如果需要某个特定的 Android 版本(列表):
repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-6.0.1_r63
5.同步源码树(以后只需执行这条命令来同步)
repo sync
下载常见问题
1.下载命令结束,提示error,只需要重复执行repo sync 即可。
编译源码
1.清理
make clobber
2.设置环境
source build/envsetup.sh
或者
. build/envsetup.sh
3.选择一个目标
lunch aosp_arm-eng
4.构建代码
make -j4
5.##模拟 Android 设备
编译流程会自动将模拟器添加到您的路径中。要运行模拟器,请输入以下命令:
emulator
6.重新生成img
make snod
编译常见问题
1.You are attempting to build with the incorrect version
of java.
Your version is: openjdk version "1.8.0_162" OpenJDK Runtime Environment (build 1.8.0_162-8u162-b12-0ubuntu0.16.04.2-b12) OpenJDK 64-Bit Server VM (build 25.162-b12, mixed mode).
The required version is: "1.7.x"
Please follow the machine setup instructions at
https://source.android.com/source/initializing.html
解决方法1
执行
export EXPERIMENTAL_USE_JAVA8=true
解决方法2
由于编译android源码需要openjdk1.7.X版本。ubuntu 16.04自带openjdk为1.8.X版本。
sudo apt-get install openjdk-7-jre 或者sudo apt-get install openjdk-7-jdk
如果出现
--------没有可用的软件包 openjdk-7-jdk,但是它被其它的软件包引用了。
这可能意味着这个缺失的软件包可能已被废弃, 或者只能在其他发布源中找到
E: 软件包 openjdk-7-jdk 没有可安装候选
可以按照一下操作安装1.7.X版本
sudo add-apt-repository ppa:openjdk-r/ppa
sudo apt-get update
sudo apt-get install openjdk-7-jdk
如果安装成功之后还是不能用可能不有多个版本,选的不对
sudo update-alternatives --config java
sudo update-alternatives --config javac
选出正确的版本
2.recipe for target 'out/host/linux-x86/obj/lib/libart.so' failed
trip: libpagemap_32 (out/target/product/xx/obj_arm/lib/libpagemap.so)
target Strip: librilutils_32 (out/target/product/xx/obj_arm/lib/librilutils.so)
target Strip: libtinyxml_32 (out/target/product/xx/obj_arm/lib/libtinyxml.so)
clang: error: linker command failed with exit code 1 (use -v to see invocation)
drivers/soc/qcom/Kconfig:310:warning: choice value used outside its choice group
drivers/soc/qcom/Kconfig:315:warning: choice value used outside its choice group
configuration written to .config
make[2]: Leaving directory '/home/xx/xx/6.0/android/xx/out/target/product/xx/obj/KERNEL_OBJ'
make[1]: Leaving directory '/home/xx/xx/6.0/android/xx/kernel'
make[1]: Entering directory '/home/xx/xx/6.0/android/xx/kernel'
make[2]: Entering directory '/home/xx/xx/6.0/android/xx/out/target/product/xx/obj/KERNEL_OBJ'
build/core/host_shared_library_internal.mk:51: recipe for target 'out/host/linux-x86/obj/lib/libart.so' failed
make: *** [out/host/linux-x86/obj/lib/libart.so] Error 1
make: *** 正在等待未完成的任务....
clang编译器导致的问题,目前可行的修改方法时在art/build/Android.common_build.mk ,中将host 默认编辑器使用clang关掉,找到WITHOUT_HOST_CLANG
关闭clang即可
ART_HOST_CLANG := false
ifneq ($(WITHOUT_HOST_CLANG),true)
# By default, host builds use clang for better warnings.
ART_HOST_CLANG := false
endif