欢迎来到天天文库
浏览记录
ID:8789180
大小:58.00 KB
页数:5页
时间:2018-04-07
《arm-linux-gcc交叉工具链的安装和使用》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、arm-linux-gcc交叉工具链的安装和使用分类: linux内核 工具使用2013-01-1801:01 2295人阅读 评论(0) 收藏 举报1、安装arm-linux-gcc交叉工具链[root@localhostDenny]#lsarm-linux-gcc-4.3.2.tgz Desktop gcc kernel modules shell实验 smb.conf tftp安装包 wireshark软件包at_remind.c file gdb makefiles samba安装包 smb test wireless[root@localhost
2、Denny]# tarzxvfarm-linux-gcc-4.3.2.tgz-C / // -C 参数指的是解压到根目录下面[root@localhost/]#cd/usr/local/[root@localhostlocal]#lsarm bin etc games include lib libexec sbin share src[root@localhostlocal]#cdarm/4.3.2/arm-none-linux-gnueabi/bin/ lib/ libexec/ share/[root@localhos
3、tlocal]#cdarm/4.3.2/bin/ //安装在 /usr/local/arm/4.3.2/bin/ 的“bin”目录下面[root@localhostbin]# [root@localhostbin]# /usr/local/arm/4.3.2/bin/arm-linux-gcc // arm-linux-gcc 使用方法1:跟上“全路径”[[root@localhostbin]# echo$PATH/usr/lib/qt-3.3/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/loc
4、al/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin[root@localhostbin]# export$PATHbash:export:`/usr/lib/qt-3.3/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin':notavalididentifier[root@local
5、hostbin]#vi/etc/proprofile profile.d/protocols [root@localhostbin]# vi/etc/profile // arm-linux-gcc 使用方法2:添加路径到环境变量中去,在系统的时候就可以“任何地方”使用 arm-linux-gcc [root@localhostbin]# #Pathmanipulationif["$EUID"="0"];then pathmunge/sbin pathmunge/usr/sbin pathmunge/usr/local/sbin pathmunge/
6、usr/local/arm/4.3.2/bin //环境变量添加的位置fi[root@localhostfile]#cathello.c #includeintmain(){ char*p="helloworld!!"; printf("%s:",*p); //错误:字符串的输出 printf("%s:",p);不用加*p(字符串指针),和其他指针不同 return0;}[root@localhostfile]#vihello.c [root@localhostfile]# gcchello.c-ohello //x86编译方式[root@lo
7、calhostfile]# ./hello //在x86上能够运行helloworld!!:[root@localhostfile]#arm-linux-gcarm-linux-gcc arm-linux-gcc-4.3.2 arm-linux-gcov[root@localhostfile]# arm-linux-gcchello.c-ohello1 //ARM编译方式[root@localhostfile]#lsfork
此文档下载收益归作者所有