赞
踩
2018.08.07
在看了许多教程后自己也动手实施,道路可以说简单也可以说难。
硬件要求:
越高越好,不建议在虚拟机内编译
内存越大越好,推荐200G,在这里就不赘述怎么安装ubuntu双系统了,网上教程很多,有时间写一教程出来传送门
安装并配置git
sudo apt-get install git -y
git config --global user.name "your name"
git config --global user.email "your@example.com"
安装repo
sudo apt install repo -y
sudo apt-get install curl -y
下载repo工具
mkdir ~/bin
PATH=~/bin:$PATH
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
chmod a+x ~/bin/repo
若下载不了,用下面的方法(推荐)
git clone https://mirrors.tuna.tsinghua.edu.cn/git/git-repo
cp ~/git-repo/repo ~/bin/
chmod a+x ~/bin/repo
下载源码
1. repo的运行过程中会尝试访问官方的git源更新自己,如果想使用tuna的镜像源进行更新,可以将如下内容复制到你的~/.bashrc里:
export REPO_URL=’https://mirrors.tuna.tsinghua.edu.cn/git/git-repo/’
2.并编辑 ~/bin/repo文件,找到REPO_URL这一行,然后将其内容修改(注释并增加一行)为:
REPO_URL = 'https://gerrit-google.tuna.tsinghua.edu.cn/git-repo'
顺带说一声清华源用起真爽!
echo " export REPO_URL='https://mirrors.tuna.tsinghua.edu.cn/git/git-repo/' ">> ~/.bashrc #执行步骤1
vi ~/bin/repo
mkdir ~/android8source #将会存放源码cd ~/android8source/
初始化仓库
查看分支表:
打开新终端,下载manifests
mkdir ~/tabl
cd ~/tabl
repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest
cd ~/tabl/.repo/manifests/
git branch -a
同步8.1分支:
我们将上面的source文件夹作为仓库,现在需要来初始化这个仓库了.通过执行初始化仓库命令可以获取AOSP项目master上最新的代码并初始化该仓库,命令如下:
repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-8.1.0_r2
同步源码到本地
初始化仓库之后,就可以开始正式同步代码到本地了,命令如下:
repo sync
出现……success…….即同步完成,下面是编译
编译过程易错且过程漫长,需要耐心。 I am too young?!?!?!
我现在在Ubuntu 18.04下编译AOSP主线代码,因此需要安装OpenJDK 8,执行命令如下:
sudo apt-get update
sudo apt-get install openjdk-8-jdk -y
构建依赖
sudo apt-get install libx11-dev:i386 libreadline6-dev:i386 libgl1-mesa-dev g++-multilib -y
sudo apt-get install -y git flex bison gperf build-essential
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。