首先,下载gcc的源码:https://launchpad.net/gcc-arm-embedded/+download
其次,安装所需的其他相关工具:
sudo
apt-get
install
apt-src
gawk
perl autoconf m4 automake
sudo
apt-get
install
libtool libncurses5-dev gettext gperf
sudo
apt-get
install
dejagnu expect tcl autogen guile-2.0-dev
sudo
apt-get
install
flex flip bison tofrodos texinfo g++
gcc
-multilib
sudo
apt-get
install
libgmp3-dev libmpfr-dev debhelper texlive texlive-extra-utils
sudo apt-get install mingw-w64
最后的那个mingw-w64是可以是编译处理的可执行文件为window下可运行的,即exe文件。如果gcc要用在window下就安装这个。
再次,安装编译器:
在/home/用户名下/.bashrc文件末尾中添加下面的内容:
export PATH=$PATH:/yourdir/arm-none-eabi-embbnux/bin,然后保存。
执行:source .bashrc
然后重启机子,才会起作用。
采用
arm-none-eabi-
gcc
-
v
命令查看该编译器是否安装成功。
本文参考于:
http://www.embbnux.com/2014/04/28/compile_arm_gcc_for_linux_x86_64_amd64/