Windows下常用IDE来编译,Linux下直接使用gcc来编译,编译过程是Linux嵌入式编程的基础,也是嵌入式高频基础面试问题。一、命令行编译及各个细分编译过程hello.c示例代码:#include <stdio.h>int main(void){ printf("Hello world\n"); return 0;}编译:gcc hello.c ...
https://www.eetopic.com/article/2279.html
上传日期: 2022-09-28