1、Ubuntu命令行安装交叉编译器gcc-arm-linux-gnueabihf
在终端运行如下命令:
sudo apt-get update
sudo apt-get install gcc-arm-linux-gnueabihf
运行效果如下:
1.1检查交叉编译器是否安装成功:
arm-linux-gnueabihf-gcc -v
出现以下提示信息说明成功安装
之后便可以进行交叉编译了:例如运行hello world的C程序
vim hello.c
#include <stdio.h>
int main(int argc, char **argv)
{
printf("Hello World!\n");
return 0;
}
arm-linux-gnueabihf-gcc hello.c -o hello
file hello
终端运行效果:
可以看到,生成的可执行文件hello应该在ARM处理器系统上运行。
1.2如果想卸载相应交叉编译器,运行如下命令即可:
卸载交叉编译器:
sudo apt-get remove gcc-arm-linux-gnueabihf
运行效果如下: