Android 源码编译

作者: 搬代码白言午 | 来源:发表于2016-04-24 20:41 被阅读333次

    一直想编译 Android 的源码,苦于 Mac 硬盘太小,PC 上的硬盘也只有 128G,想着机械盘编译又太慢,最终咬牙,在淘宝入了一个 256 的SSD,装了个 Ubuntu 14.04,然后开始捣鼓,现在记录一下捣鼓的过程

    1. Android 开发环境

      • 首先是 JAVA 环境

            apt-cache search openjdk //用于找到 jdk 版本,会出现一大堆列表,找到jdk,复制下名字
            sudo apt-get install openjdk-7-jdk//根据上面找到的,开始安装
            java -version//测试
        
      • 然后是 Android SDK 和 Android stuido 开发环境(这步与后面源码编译并无很大关系,但是还是做了,因为后期导入源码,又要折腾一次Android studio,此处其实可以不用下载sdk,因为源码可以编译出sdk,开始不知道,就直接下载了)
        AndroidDevTools找到自己想要的版本,我找了Android stuido 2.0 beta6,然后下载,下载后解压,将文件整个文件夹拷贝到自己的工作目录下

             cd 工作目录/android-studio
             ./bin/studio.sh
        

        看到Android studio 运行界面,等待后,选择 Cancel
        选择 Re-run the setup wizard on the next Android Studio startup(Recommended)
        然后选择 OK
        继续选择右下角的 configrution
        选择 SDK Manager
        点击 Launch Standalone SDK Manager
        左上角 Tools=>Options..
        然后根据 AndroidDevTools 中的教程,修改sdk镜像源
        下载镜像

    2. 拉取源码

      • 首先是 repo 工具,这是拉取谷歌家很多源码都会用到的工具
        清华镜像,造福社会。
        清华的教程其实写的很清楚了,不过考虑到 repo 可能有其他用处,我把它配置到了.bashrc

              curl https://storage.googleapis.com/git-repo-downloads/repo > ~/Tools/repo    
              chmod a+x ~/Tools/repo
              sudo gedit .bashrc
        

      末尾加上

               export REPO = /home/flyer/Tools/repo
               export PATH=$PATH:$REPO
           
       然后就是建立工作环境初始化仓库   
           
               mkdir AOSP
               cd AOSP
               repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest            
               //这里可能会让你配置一下 git username 和 mail 地址,如果没有 git 就安装 git
               sudo apt-get install git
               sudo apt-get install git-core  
               sudo git config user.name "flyer"          
               sudo git config user.email "***@***"
      

      考虑到 Android 版本很多,可以通过拉取manifest,获取版本信息

               git clone git://aosp.tuna.tsinghua.edu.cn/aosp/platform/manifest                           
               cd manifest            
               git branch -al//会显示出所有的分支,也就是android的版本
      

      拉取需要的版本

               repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-5.1.1_r19 
               repo sync //开始拉取代码,这是一个很慢的过程,不过网速还是不错的
      
    3. 编译源码

      • 安装ccache(一个C++/C的高效编译器)

              sudo apt-get install ccache
              source ~/.bashrc  
        
      • 安装第三方依赖(下面是可能会用到的依赖,我全跑了一遍,防止编译的时候出现问题,毕竟编译时间太长,不可能一直看着)

              sudo apt-get install git-core//前面已经安装了
              sudo apt-get install git//前面已经安装了
              sudo apt-get install gcc
              sudo apt-get install gnupg
              sudo apt-get install flex
              sudo apt-get install bison
              sudo apt-get install gperf
              sudo apt-get install build-essential
              sudo apt-get install zip
              sudo apt-get install curl
              sudo apt-get install libc6-dev
              sudo apt-get install libncurses5-dev:i386
              sudo apt-get install x11proto-core-dev
              sudo apt-get install libx11-dev:i386
              sudo apt-get install libreadline6-dev:i386
              sudo apt-get install libgl1-mesa-dev
              sudo apt-get install g++-multilib
              sudo apt-get install mingw32
              sudo apt-get install tofrodos
              sudo apt-get install python-markdown
              sudo apt-get install libxml2-utils
              sudo apt-get install xsltproc
              sudo apt-get install zlib1g-dev:i386
              sudo apt-get install dpkg-dev‘
              sudo apt-get autoremove
              sudo apt-get autoclean//最后我清理了一下无用的东西
        
      • 编译

              cd AOSP  //进入源码根目录
              prebuilts/misc/linux-x86/ccache/ccache -M 50G //设置ccache大小
              . build/envsetup.sh//加载环境变量
              lunch
              1  //此处会出现需要选择版本,我编译的是虚拟机的,直接选了 1
              make j2  //j4为4核心,看你电脑配置
                    
              #### make completed successfully (6:38:43 (hh:mm:ss)) #### //然后第二天睡醒,看到successfully  
        
    4. 运行

           emulator//开启模拟器
           //这中间,我由于去上班了,直接把电脑关了,导致后面直接运行 emulator 命令无效
           //重新加载一遍环境即可        
           . build/envsetup.sh
           lunch   
           1        
           emulator
      
    5. 大功告成,特此记录

    相关文章

      网友评论

        本文标题:Android 源码编译

        本文链接:https://www.haomeiwen.com/subject/tapfrttx.html