我使用的GCC版本10.2.1在Linux Debian(x86-64).我写这个c代码:
#include <stdio.h> int main() { printf("Hello World!"); return 0; }
现在我的问题是如何编译并运行armv7 l的代码?目标系统是评估板,谢谢
bwleehnv1#
您可以使用arm-linux-gnueabihf-gcc hello.c -o hello命令。在此之前,您应该在您的linux系统中安装arm-linux-gnueabihf-gcc。here is full sample that work for me
arm-linux-gnueabihf-gcc hello.c -o hello
1条答案
按热度按时间bwleehnv1#
您可以使用
arm-linux-gnueabihf-gcc hello.c -o hello
命令。在此之前,您应该在您的linux系统中安装arm-linux-gnueabihf-gcc。here is full sample that work for me