Install qemu-arm for Ubuntu

ccwwff發表於2017-04-05

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://blog.csdn.net/hmsiwtv/article/details/19763709 

http://blog.csdn.net/flyingcloude/article/details/9417791

 

 

相關文章