Linux Arm程序开发

安装 arm 交叉编译环境

apt-get install gcc-arm-linux-gnueabi

apt-get install qemu qemu-user-static binfmt-support

编写测试程序

#include

int main(int argc, char* argv[])

{

printf(“hello\n”);

return 0;

}

编译,运行

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

./hello

也可以用  qemu-arm ./hello 运行

你可能感兴趣的:(Linux Arm程序开发)