Preface
To build the Android Platform, we need a toolchain that can produce executables that link correctly against Android's libc
, Bionic. To achieve this, a toolchain targeting aarch64-linux-android
(and arm-linux-androideabi
) is needed. This article aims to provide a step-by-step guide for reproducing the desired toolchain on all architecture that GCC …
Summary
This week is mainly about decoupling toolchain from Android Build System so as to enable a local build of Android on the phone itself. Toolchains for the following programming languages are needed throughout the entire build:
- C/C++ (Android Platform)
- Java (Android Platform, apps)
- Go (build system, i.e …
Disclaimer
This article is a stub. This means that it may only serve status report purposes; it may contain severe scientific fallacies and/or inappropriate language, or have missing sections of information. In case of disagreement on previous point, cease consumption/utilization of content in this webpage immediately.
Preface
Many …
Read MoreDisclaimer
This article is a stub. This means that it may only serve status report purposes; it may contain severe scientific fallacies and/or inappropriate language, or have missing sections of information. In case of disagreement on previous point, cease consumption/utilization of content in this webpage immediately.
Preface
As …
Read MoreSummary
This is my first week back on GSoC from the final exams, and, according to the proposal, the second part of the project should get started in this week. This week's work sums up into the following two articles:
- Integrating Android kernel source into Portage Introduces how the three …