How to install cross compiler (on ubuntu 12.04 LTS) for microprocessor SA1100?

后端 未结 2 1561
盖世英雄少女心
盖世英雄少女心 2021-02-01 10:58

Can someone please tell me how to install the cross compiler (programming language C) for the SA1100 microprocessor? I have ubuntu 12.04 LTS. I´m a complete noob to Linux, I jus

2条回答
  •  再見小時候
    2021-02-01 11:06

    Add the ppa: https://launchpad.net/gcc-arm-embedded The source codes for both are same. Currently supports Ubuntu 10.04/12.04/13.04/13.10/14.04 32 and 64 bit.

    Detailed explanations to Launchpad PPA can be found at https://help.launchpad.net/Packaging/. That website explains how a PPA is set up and how to add existing PPA and install software from it.

    Here are quick steps to install toolchain from this PPA on Ubuntu before 14.04. Open a terminal and type :

    1. sudo add-apt-repository ppa:terry.guo/gcc-arm-embedded
    2. sudo apt-get update
    3. sudo apt-get install gcc-arm-none-eabi

    To remove installed toolchain, just do :

    sudo apt-get remove gcc-arm-none-eabi

    To update the toolchain, just repeat step 2 and 3.

提交回复
热议问题