Install qemu-arm for Ubuntu

前端之家收集整理的这篇文章主要介绍了Install qemu-arm for Ubuntu前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1. 安装:

$ sudo apt-get install gcc-arm-linux-gnueabi

$ sudo apt-get install qemu-user qemu-system qemu-utils

2. C代码(hello.c)

#include <stdio.h>

int main(int argc,char* argv[])
{
printf("hello\n");
return 0;
}

3. 编译:

$ arm-linux-gnueabi-gcc hello.c -o hello -static

4. 运行:

$ qemu-arm ./hello

hello

Reference:

http://www.jb51.cc/article/p-mabrgxhf-ge.html

http://www.jb51.cc/article/p-cndlijmg-pn.html

原文链接:https://www.f2er.com/ubuntu/353621.html

猜你在找的Ubuntu相关文章