4_9_4

Last modified by Microchip on 2025/07/17 06:41

Setup ARM Cross Compiler 4.9.4

  • Ubuntu:
    In Ubuntu, you can install the ARM Cross Compiler by doingemoticon_unhappy
    sudo apt-get install gcc-arm-linux-gnueabi
    export CROSS_COMPILE=arm-linux-gnueabi-
  • Others:
    For others, you can download the Linaro cross compiler and setup the environment by doingemoticon_unhappy
    wget -c https://releases.linaro.org/components/toolchain/binaries/4.9-2017.01/arm-linux-gnueabi/gcc-linaro-4.9.4-2017.01-x86_64_arm-linux-gnueabi.tar.xz
    tar xf gcc-linaro-4.9.4-2017.01-x86_64_arm-linux-gnueabi.tar.xz
    export CROSS_COMPILE=`pwd`/gcc-linaro-4.9.4-2017.01-x86_64_arm-linux-gnueabi/bin/arm-linux-gnueabi-