Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 1.08 KB

File metadata and controls

34 lines (21 loc) · 1.08 KB

AArch64 GCC 4.9 Toolchain Setup

This project utilizes the Android AArch64 GCC 4.9 toolchain from the master branch to compile 64-bit ARM code. We have disabled deprecation warnings and removed any unnecessary build delays to ensure faster and smoother compilation.

Features

  • AArch64 GCC 4.9: Optimized for 64-bit ARM architecture.
  • No Deprecation Warnings: Cleaner output during build by suppressing deprecated feature notices.
  • Build Delays Removed: Faster compilation by eliminating unnecessary delays.

Usage

  1. Clone the Toolchain
    git clone https://github.com/Adrilaw/aarch64-linux-android-4.9-toolchain/ -b master
    
  2. Configure Build
    export ARCH=arm64
    
    export SUBARCH=arm64
    
    CROSS_COMPILE=~/path/to/aarch64-linux-android-4.9-toolchain/bin/aarch64-linux-android-
    
  3. Compile
    make -j$(nproc)
    

Notes

● This setup is optimized for Android development, using a stable GCC toolchain for AArch64 architecture.

● Suitable for developers looking for fast builds without cluttered warning outputs.