微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Ubuntu16.04中Android编译环境适配

Android编译环境的网址:https://source.android.com/source/initializing

Establishing a Build Environment

This section describes how to set up your local work environment to build the Android source files. You will need to use Linux or Mac OS. Building under Windows is not currently supported.

For an overview of the entire code-review and code-update process,seeLife of a Patch.

Choosing a Branch

Some of the requirements for your build environment are determined by which version of the source code you plan to compile. SeeBuild Numbersfor a full listing of branches you may choose from. You may also choose to download and build the latest source code (calledmaster),in which case you will simply omit the branch specification when you initialize the repository.

Once you have selected a branch,follow the appropriate instructions below to set up your build environment.

Setting up a Linux build environment

These instructions apply to all branches,includingmaster.

The Android build is routinely tested in house on recent versions of Ubuntu LTS (14.04),but most distributions should have the required build tools available. Reports of successes or failures on other distributions are welcome.

For Gingerbread (2.3.x) and newer versions,including themasterbranch,a 64-bit environment is required. Older versions can be compiled on 32-bit systems.

Note:See theRequirementsfor the complete list of hardware and software requirements. Then follow the detailed instructions for Ubuntu and Mac OS below.

Installing the JDK

Themasterbranch of Android in theAndroid Open Source Project (AOSP)requires Java 8. On Ubuntu,useOpenJDK.

SeeJDK Requirementsfor older versions.

For Ubuntu >= 15.04

Run the following:

  
  
$ sudo apt-get update $ sudo apt-get install openjdk-8-jdk

For Ubuntu LTS 14.04

There are no available supported OpenJDK 8 packages for Ubuntu 14.04. TheUbuntu 15.04 OpenJDK 8packages have been used successfully with Ubuntu 14.04.Newer package versions (e.g. those for 15.10,16.04) were found not to work on 14.04 using the instructions below.

  1. Download the.debpackages for 64-bit architecture fromarchive.ubuntu.com:

  2. Optionally,confirm the checksums of the downloaded files against the SHA256 string listed with each package above.

    For example,with thesha256sumtool:

        
        
    $ sha256sum {downloaded.deb file}
  3. Install the packages:

        
        
    $ sudo apt-get update

    Rundpkgfor each of the .deb files you downloaded. It may produce errors due to missing dependencies:

        
        
    $ sudo dpkg -i {downloaded.deb file}

    To fix missing dependencies:

        
        
    $ sudo apt-get -f install

Update the default Java version - optional

Optionally,for the Ubuntu versions above update the default Java version by running:

  
  
$ sudo update-alternatives --config java $ sudo update-alternatives --config javac

If,during a build,you encounter version errors for Java,set its path as described in theWrong Java Versionsection.

Installing required packages (Ubuntu 14.04)

You will need a 64-bit version of Ubuntu. Ubuntu 14.04 is recommended.

  
  
$ 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

Note:To use SELinux tools for policy analysis,also install thepython-networkxpackage.

Note:If you are using LDAP and want to run ART host tests,monospace; padding:0px; word-break:break-word; margin-bottom:0px">libnss-sss:i386package.

Installing required packages (Ubuntu 12.04)

You may use Ubuntu 12.04 to build older versions of Android. Version 12.04 is not supported on master or recent releases.

  
  
$ sudo apt-get install git gnupg flex bison gperf build-essential \ zip curl libc6-dev libncurses5-dev:i386 x11proto-core-dev \ libx11-dev:i386 libreadline6-dev:i386 libgl1-mesa-glx:i386 \ libgl1-mesa-dev g++-multilib mingw32 tofrodos \ python-markdown libxml2-utils xsltproc zlib1g-dev:i386 $ sudo ln -s /usr/lib/i386-linux-gnu/mesa/libGL.so.1 /usr/lib/i386-linux-gnu/libGL.so

Installing required packages (Ubuntu 10.04 -- 11.10)

Building on Ubuntu 10.04-11.10 is no longer supported,but may be useful for building older releases of AOSP.

  
  
$ sudo apt-get install git gnupg flex bison gperf build-essential \ zip curl zlib1g-dev libc6-dev lib32ncurses5-dev ia32-libs \ x11proto-core-dev libx11-dev lib32readline5-dev lib32z-dev \ libgl1-mesa-dev g++-multilib mingw32 tofrodos python-markdown \ libxml2-utils xsltproc

On Ubuntu 10.10:

  
  
$ sudo ln -s /usr/lib32/mesa/libGL.so.1 /usr/lib32/mesa/libGL.so

On Ubuntu 11.10:

  $ sudo apt-get install libx11-dev:i386

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐