Tiny6410 简单的交叉编译helloworld

在工作目录下建立helloworld.c文件

#include <stdio.h>    main()   {       printf("helloworld!\n");   }  

保存关闭后。

编译helloworld文件:

root@:/home/workdir/qt/project/helloworld# arm-linux-gcc helloworld.c -o helloworld  

生成可执行文件helloworld:

Tiny6410 简单的交叉编译helloworld


将可执行文件helloworld拷贝到文件系统目录,并执行

Tiny6410 简单的交叉编译helloworld


执行成功。

这是最简单的交叉编译示例。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wywzdx.html