Firefly开源社区

打印 上一主题 下一主题

编译AIO-3399ProC android 9.0报错

2965

积分

12

威望

22

贡献

高级创客

Rank: 6Rank: 6

积分
2965
发表于 2019-12-30 16:19:06      楼主
回复

使用道具 举报

2965

积分

12

威望

22

贡献

高级创客

Rank: 6Rank: 6

积分
2965
发表于 2020-1-3 10:37:56      沙发
本帖最后由 leung先森 于 2020-1-3 10:44 编辑

使用 OpenJDK 8
Ubuntu LTS 14.04
以下是某方案的说明,可以参考下:

附录 A 编译开发环境搭建
1. Initializing a Build Environment
This section describes how to set up your local work environment to build the Android
source files. You must use Linux or Mac OS; building under Windows is not currently
supported.
For an overview of the entire code-review and code-update process, see Life of a
Patch.
Note: All commands in this site are preceded by a dollar sign ($) to differentiate them
from output or entries within files. You may use the Click to copy feature at the top
right of each command box to copy all lines without the dollar signs or triple-click each
line to copy it individually without the dollar sign.
2. Choosing a Branch
Some requirements for the build environment are determined by the version of the
source code you plan to compile. For a full list of available branches, see Build
Numbers. You can also choose to download and build the latest source code (called
master), in which case you will simply omit the branch specification when you
initialize the repository.
After you have selected a branch, follow the appropriate instructions below to set up
your build environment.
3. Setting up a Linux build environment
These instructions apply to all branches, including master.
The Android build is routinely tested in house on recent versions of Ubuntu LTS (14.04)
and Debian testing. Most other distributions should have the required build tools
available.
For Gingerbread (2.3.x) and newer versions, including the master branch, a 64-bit
environment is required. Older versions can be compiled on 32-bit systems.
Note: See Requirements for the complete list of hardware and software requirements,
then follow the detailed instructions for Ubuntu and Mac OS below.
4. Installing the JDK
The master branch of Android in the Android Open Source Project (AOSP) comes with
prebuilt versions of OpenJDK below prebuilts/jdk/ so no additional installation is
required.
Older versions of Android require a separate installation of the JDK. On Ubuntu, use
OpenJDK. See JDK Requirements for precise versions and the sections below for
instructions.
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. The Ubuntu
15.04 OpenJDK 8 packages 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 .deb packages for 64-bit architecture from
old-releases.ubuntu.com:
openjdk-8-jre-headless_8u45-b14-1_amd64.deb with SHA256
0f5aba8db39088283b51e00054813063173a4d8809f70033976f83e214ab56c0
openjdk-8-jre_8u45-b14-1_amd64.deb with SHA256
9ef76c4562d39432b69baf6c18f199707c5c56a5b4566847df908b7d74e15849
openjdk-8-jdk_8u45-b14-1_amd64.deb with SHA256
6e47215cf6205aa829e6a0a64985075bd29d1f428a4006a80c9db371c2fc3c4c
2. Optionally, confirm the checksums of the downloaded files against the SHA256
string listed with each package above. For example, with the sha256sum tool:
sha256sum {downloaded.deb file}
3. Install the packages:
sudo apt-get update
Run dpkg for 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 javasudo update-alternatives --config javac
Note: If, during a build, you encounter version errors for Java, see Wrong Java version
for likely causes and solutions.
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 the python-networkx
package. Note: If you are using LDAP and want to run ART host tests, also install the
libnss-sss:i386 package.
5. Configuring USB Access
Under GNU/linux systems (and specifically under Ubuntu systems), regular users
can't directly access USB devices by default. The system needs to be configured to
allow such access.
The recommended approach is to create a file /etc/udev/rules.d/51-android.rules (as
the root user) and to copy the following lines in it. <username> must be replaced by
the actual username of the user who is authorized to access the phones over USB.
# adb protocol on passion (Rockchip products)
SUBSYSTEM=="usb", ATTR{idVendor}=="2207",
ATTR{idProduct}=="0010", MODE="0600", OWNER="<username>"
Those new rules take effect the next time a device is plugged in. It might therefore be
necessary to unplug the device and plug it back into the computer.
This is known to work on both Ubuntu Hardy Heron (8.04.x LTS) and Lucid Lynx
(10.04.x LTS). Other versions of Ubuntu or other variants of GNU/linux might require
different configurations.
References : http://source.android.com/source/initializing.html
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

友情链接 : 爱板网 电子发烧友论坛 云汉电子社区 粤ICP备14022046号-2
快速回复 返回顶部 返回列表