微波EDA网,见证研发工程师的成长!
首页 > 硬件设计 > 嵌入式设计 > 关于arm-linux-gcc4.4.3在ubuntu11.10下的安装

关于arm-linux-gcc4.4.3在ubuntu11.10下的安装

时间:11-21 来源:互联网 点击:

6.编译Hello World程序,测试交叉工具链
写下下面的Hello World程序,保存为hello.c
#include
int main()
{
printf("Hello World!\n");
return 0;
}
执行下面的命令:
$ arm-linux-gcc hello.c -o hello

ls 下

看到hello 执行文件

$ file hello 在hello的目录下

可以看到hello: ELF 32-bit LSB executable,ARM, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.32, not stripped
这样说明可以在ARM上运行,此时不能在pc上运行

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top