`
isiqi
  • 浏览: 16498631 次
  • 性别: Icon_minigender_1
  • 来自: 济南
社区版块
存档分类
最新评论

android官方文档:ubuntn10.04下编译android源码Building the System

阅读更多

在编译前请先看

http://blog.csdn.net/wufenglong/archive/2011/05/11/6411688.aspx

初始化编译环境 Initializing a Build Environment

Building the System

The basic sequence of build commands is as follows:

Initialize

Initialize the environment with theenvsetup.shscript. Note that replacing "source" with a single dot saves a few characters, and the short form is more commonly used in documentation.

$ source build/envsetup.sh

or

$ . build/envsetup.sh

Choose a Target

Choose which target to build withlunch. The exact configuration can be passed as an argument, e.g.

$ lunch full-eng

The example above refers to a complete build for the emulator, with all debugging enabled.

If run with no argumentslunchwill prompt you to choose a target from the menu.

All build targets take the form DEVICE-BUILDTYPE, where the DEVICE is a codename referring to the particular hardware:

Codename Device
passion Nexus One
crespo Nexus S
generic emulator

and the BUILDTYPE is one of the following:

Buildtype Use
user limited access; suited for production
userdebug like "user" but withsuaccess; preferred for debugging
eng unrestricted access

Build the Code

Build everything withmake. GNU make can handle parallel tasks with a-jNargument, and it's common to use a number of tasks N that's between 1 and 2 times the number of hardware threads on the computer being used for the build. E.g. on a dual-E5520 machine (2 CPUs, 4 cores per CPU, 2 threads per core), the fastest builds are made with commands betweenmake -j16andmake -j32.

$ make -j4

Run It!

You can either run your build on an emulator or flash it on a device. Please note that you have already selected your build target withlunch, and it is unlikely at best to run on a different target than it was built for.

Flash a Device

To flash a device, you will need to usefastboot, which should be included in your path after a successful build. Place the device in fastboot mode either manually by holding the appropriate key combination at boot, or from the shell with

$ adb reboot bootloader

Once the device is in fastboot mode, run

$ fastboot flashall -w

The-woption wipes the/datapartition on the device; this is useful for your first time flashing a particular device, but is otherwise unnecessary.

Emulate an Android Device

The emulator is added to your path automatically by the build process. To run the emulator, type

$ emulator

Troubleshooting Common Build Errors

Wrong Java Version

If you are attempting to build froyo or earlier with Java 1.6, or gingerbread or later with Java 1.5,makewill abort with a message such as

************************************************************
You are attempting to build with the incorrect version
of java.

Your version is: WRONG_VERSION.
The correct version is: RIGHT_VERSION.

Please follow the machine setup instructions at
    http://source.android.com/download
************************************************************

This may be caused by

  • failing to install the correct JDK as specified on theInitializingpage. Building Android requires Sun JDK 5 or 6 depending on which release you are building.

  • another JDK that you previously installed appearing in your path. You can remove the offending JDK from your path with:

    $ export PATH=${PATH/\/path\/to\/jdk\/dir:/}
    

Python Version 3

Repo is built on particular functionality from Python 2.x and is unfortunately incompatible with Python 3. In order to use repo, please install Python 2.x:

$ apt-get install python

Gmake Version 3.82

There is a bug inmakeversion 3.82 on Mac OS that prevents building Android.

TODO: what the error looks like with GNU make 3.82 on older builds that don't explicitly detect it.

Follow the instructions on theInitializingpage for reverting GNU make from 3.82 to 3.81.

Case Insensitive Filesystem

If you are building on an HFS filesystem on Mac OS X, you may encounter an error such as

************************************************************
You are building on a case-insensitive filesystem.
Please move your source tree to a case-sensitive filesystem.
************************************************************

Please follow the instructions on theInitializingpage for creating a case-sensitive disk image.

No USB Permission

On most Linux systems, unprivileged users cannot access USB ports by default. If you see a permission denied error, follow the instructions on theInitializingpage for configuring USB access.

If adb was already running and cannot connect to the device after getting those rules set up, it can be killed withadb kill-server. That will cause adb to restart with the new configuration.

分享到:
评论
2 楼 77219634 2018-01-06  
0127bf2236bee4dd1f632ce430f1af13 这是什么意思,求大神解答
1 楼 learner576539763 2016-01-12  
为什么 我是ubuntu14.04也会提示我You are building on a case-insensitive filesystem.
Please move your source tree to a case-sensitive filesystem.
ubuntu不是本身就是这种文件结构吗??

相关推荐

    ubuntu 10.04下编译Android源码技术文档

    ### Ubuntu 10.04下编译Android源码技术文档 #### 一、环境准备与配置 在Ubuntu 10.04环境下编译Android源码是一项复杂但极具价值的任务。为了确保编译过程顺利进行,首先需要完成一系列准备工作。 1. **系统更新...

    Ubuntu 10.04下编译Android源码全过程

    总之,Ubuntu 10.04下编译Android源码是一个涉及Git版本控制、Repo管理工具、系统依赖安装和源码编译的复杂过程。确保正确安装和配置这些工具是成功构建Android系统的关键。在编译过程中,耐心和对错误的调试能力也...

    Ubuntu_10.04下编译Android源码实用.pdf

    【Ubuntu 10.04下编译Android源码实用指南】 在Ubuntu 10.04系统中编译Android源码是一项复杂的过程,需要掌握Git版本控制系统以及Android的Repo工具。Git是Linux Torvalds为管理Linux内核开发而创建的分布式版本...

    Ubuntu10.04下编译Android源码全过程.pdf

    ### Ubuntu 10.04 下编译 Android 源码全过程详解 #### 一、获取 Android 源代码 **Git与集中式版本控制系统对比** - **Git**:由 Linux Torvalds 开发,是一种分布式版本控制系统。与 Subversion 和 CVS 这样的...

    (修正的)Ubuntu_10.04下编译Android源码全过程.doc

    ### Ubuntu 10.04 下编译 Android 源码全过程详解 #### 一、获取 Android 源代码 1. **Git 的介绍与安装**: - Git 是一种分布式版本控制系统,由 Linux Torvalds 为了更好地管理 Linux 内核开发而创建。 - **...

    Ubuntu 10.04下Android编译环境搭建

    在Ubuntu 10.04环境下,为了搭建Android的编译环境,我们需要完成一系列的步骤。这个过程主要包括安装Java Development Kit (JDK),配置相关的环境变量,安装必要的编译工具和依赖包,以及解决特定的系统问题。以下...

    Ubuntu_10.04上编译Android_2.3

    Ubuntu_10.04上编译Android_2.3Ubuntu_10.04上编译Android_2.3

    ubuntu10.04下deadbeef完美支持源码

    标题 "Ubuntu 10.04 下 Deadbeef 完美支持源码" 提到的是在 Ubuntu 10.04 这个 Linux 发行版上安装和使用 Deadbeef 音乐播放器的源码编译方法。Deadbeef 是一款轻量级、高度可定制化的音频播放器,它支持多种音频...

    Ubuntu环境下编译android源码及安装

    ### Ubuntu环境下编译Android源码及安装的知识点详解 #### 实验环境介绍 - **操作系统**: Ubuntu 10.04 - **Android版本**: 2.1 - **开发板**: ARM9 Mini6410 - **目标**: 在Ubuntu环境下编译Android 2.1源码并进行...

    Ubuntu10.04(64位)下载并编译Android2.2源码.pdf

    【Ubuntu 10.04 (64位)下载并编译Android 2.2源码】 在Ubuntu 10.04 (64位)...同时,由于Android系统的持续更新,某些步骤可能会随着版本变化而有所变动,因此建议查阅最新的官方文档或社区论坛以获取最准确的信息。

    android2.2源码编译-Ubuntu10.04 (X86) + android2.2 + JDK1.6

    ### Android 2.2 源码编译指南:Ubuntu 10.04 (X86) + Android 2.2 + JDK 1.6 #### 一、环境搭建 在进行Android 2.2源码编译之前,我们需要准备一个合适的开发环境。根据题目中的描述,本指南将详细介绍如何在...

    Ubuntu10.04下配置MTK6573的Android编译运行环境

    在Ubuntu 10.04操作系统中配置MTK6573的Android编译运行环境是一项复杂的任务,涉及到多个步骤和必要的组件安装。MTK6573是联发科(Mediatek)推出的一款针对智能手机和平板电脑的处理器,而Android则是运行在其上的...

    在32位Ubuntu 10.04上编译Android 2.3.doc

    ### 在32位Ubuntu 10.04上编译Android 2.3的知识点 #### 一、环境准备 1. **安装JDK6**: - 对于Android 2.3系统的编译,应选择安装JDK6而不是JDK5。 - 在32位Ubuntu 10.04环境下,直接安装JDK6可能会导致编译时...

    Build android development platform in Ubuntu 10.04.pdf

    ### 构建Android开发平台在Ubuntu 10.04 #### 1. 构建Android开发环境在Ubuntu 10.04 本章节详细介绍了如何在Ubuntu 10.04上构建一个完整的Android开发环境。Ubuntu 10.04作为一个稳定且功能强大的操作系统,是...

    编译Android源码全过程

    #### 二、源码编译 完成源代码的获取之后,下一步是编译这些源代码。 ##### 安装依赖库 编译过程中可能会遇到各种缺失的依赖库问题。以下是一些常见的依赖库及其安装命令: 1. **zlib1g-dev**: ```bash sudo ...

    Android_4.2_源码下载和编译环境安装及Android_4.2_源码编译[收集].pdf

    Android 4.2的源码编译是一项复杂但重要的任务,对于开发者来说,深入理解Android系统的内部运作和进行自定义修改都离不开对源码的掌握。本文将详细介绍在Ubuntu 10.04 64位系统上下载并编译Android 4.2源码的全过程...

Global site tag (gtag.js) - Google Analytics