arm-linux-gnueabi-gcc hello.c -o hello
时间: 2024-05-21 17:07:30 浏览: 167
hello(arm_linux).zip_arm-linux hello_hello linux
以下是使用arm-linux-gnueabi-gcc编译hello.c文件并生成可执行文件hello的步骤:
1. 确保已经安装了arm-linux-gnueabi-gcc交叉编译器。
2. 在终端中进入hello.c所在的目录。
3. 执行以下命令进行编译:
```shell
arm-linux-gnueabi-gcc hello.c -o hello
```
4. 如果编译成功,将会生成名为hello的可执行文件。
阅读全文