ubuntu搭建arm-linux-gcc

xiaoxiao2021-02-28  89

1.解压arm-linux-gcc-4.4.3.tar.gz到一个文件夹下,记住这个解压的目录

比如我的: /usr/local/arm/4.4.3

stu@ubuntu:~$ tar zxvf arm-linux-gcc-4.4.3.tar.gz

2.配置系统环境变量

sudo gedit /etc/profile

a.在最后一行加上

export PATH=$PATH:/usr/local/arm/4.4.3/opt/FriendlyARM/toolschain/4.4.3/bin

b.使环境变量生效

stu@ubuntu:~$ source /etc/profile

3.检查是否安装成功

stu@ubuntu:arm-linux-gcc -v Using built-in specs. Target: arm-none-linux-gnueabi Configured with: /opt/FriendlyARM/mini2440/build-toolschain/working/src/gcc-4.4.3/configure --build=i386-build_redhat-linux-gnu --host=i386-build_redhat-linux-gnu --target=arm-none-linux-gnueabi --prefix=/opt/FriendlyARM/toolschain/4.4.3 --with-sysroot=/opt/FriendlyARM/toolschain/4.4.3/arm-none-linux-gnueabi//sys-root --enable-languages=c,c++ --disable-multilib --with-arch=armv4t --with-cpu=arm920t --with-tune=arm920t --with-float=soft --with-pkgversion=ctng-1.6.1 --disable-sjlj-exceptions --enable-__cxa_atexit --with-gmp=/opt/FriendlyARM/toolschain/4.4.3 --with-mpfr=/opt/FriendlyARM/toolschain/4.4.3 --with-ppl=/opt/FriendlyARM/toolschain/4.4.3 --with-cloog=/opt/FriendlyARM/toolschain/4.4.3 --with-mpc=/opt/FriendlyARM/toolschain/4.4.3 --with-local-prefix=/opt/FriendlyARM/toolschain/4.4.3/arm-none-linux-gnueabi//sys-root --disable-nls --enable-threads=posix --enable-symvers=gnu --enable-c99 --enable-long-long --enable-target-optspace Thread model: posix gcc version 4.4.3 (ctng-1.6.1)

出现版本号,说明已安装成功

转载请注明原文地址: https://www.6miu.com/read-51840.html

最新回复(0)