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:
原文链接:https://www.f2er.com/ubuntu/353621.html