Preparing a toolchain for building ARM binaries on x86 hosts

https://www.technexion.com/support/knowledgebase/preparing-a-toolchain-for-building-arm-binaries-on-x86-hosts/

 

Difficulty Levels: Intermediate
Date added: November 8, 2018
Affected Products: EDM1-CF-IMX6 , EDM2-IMX6PLUS , PICO-IMX6 , PICO-IMX6UL , PICO-IMX7 , PICO-IMX8M , TEK3-IMX6 , TEK3-IMX6UL , TEP-0500-IMX6UL , TEP-0500-IMX7 , TEP-0700-IMX6UL , TEP-0700-IMX7 , TEP-1010-IMX6 , TEP-1560-IMX6 , TWP-1010-IMX6 , TWP-1560-IMX6

If you are building from source with Yocto, Yocto automatically builds a native toolchain from source. In many cases, you will also want to build binaries for 32-bit or 64-bit ARM targets without using Yocto to build a toolchain for you. The following steps will show you how to download and prepare your host with a Linaro toolchain.

Download the toolchain from Linaro:

For 32-bit targets such as NXP i.MX6, i.MX6UL, and i.MX7, the toolchain you use depends on the version of kernel and bootloader, as well as the target processor architecture:

Toolchain U-boot Linux Kernel
GCC-4.6.2_201112 U-boot 2013.10
U-boot 2014.10
3.0.35
3.10.53
GCC-5.1_201508 U-boot 2015.04
U-boot 2017.03
3.14.52
4.1.15
4.9.88

Currently, for 64-bit ARM targets such as PICO-IMX8M, we are using the following Linaro GCC toolchain, which can be downloaded from here:

gcc-linaro-6.4.1-2017.11-x86_64_aarch64-linux-gnu.tar.xz

Install the toolchain

We normally install the toolchain into the /opt directory on our Linux host:

tar xvf [toolchain-file.tar.xz] -C /opt/

Export the environment

When you are building a binary for target CPU architectures other than that of your host, you are cross-compiling. To do that with GCC, you should set up certain environment variables that are used by the other tools to ensure that you are calling the correct toolchain executables when building. For kernel and u-boot, you should also set the ARCH variable to the appropriate processor architecture.

export PATH=$PATH:/opt/[toolchain directory]/bin

For ARM64 (64-bit ARM) targets such as i.MX8M:

export ARCH=arm64
export CROSS_COMPILE=/opt/[toolchain directory]/bin/aarch64-linux-gnu-

For 32-bit ARM targets such as i.MX6 and i.MX7:

export ARCH=arm
export CROSS_COMPILE=/opt/[toolchain directory]/bin/arm-linux-gnueabihf-

Note that you will need to do this in every Linux terminal in which you intend to build for your target.

posted @   张同光  阅读(168)  评论(0编辑  收藏  举报
编辑推荐:
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
阅读排行:
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· Manus爆火,是硬核还是营销?
· 终于写完轮子一部分:tcp代理 了,记录一下
· 别再用vector<bool>了!Google高级工程师:这可能是STL最大的设计失误
· 单元测试从入门到精通
点击右上角即可分享
微信分享提示