arm-none-eabi-gcc编译器的安装和相关配置

首先,下载gcc的源码https://launchpad.net/gcc-arm-embedded/+download

其次,安装所需的其他相关工具:

sudoapt-get installapt-src gawkperl autoconf m4 automake
sudoapt-get installlibtool libncurses5-dev gettext gperf
sudoapt-get installdejagnu expect tcl autogen guile-2.0-dev
sudoapt-get installflex flip bison tofrodos texinfo g++ gcc-multilib
sudoapt-get installlibgmp3-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 -命令查看该编译器是否安装成功。

本文参考于:

http://www.embbnux.com/2014/04/28/compile_arm_gcc_for_linux_x86_64_amd64/



你可能感兴趣的:(arm-none-eabi-gcc编译器的安装和相关配置)