poyt61@DESKTOP-VIHQ582:/mnt/d/mycode/week12/run_circle/src$ arm-linux-gcc main.c -o main main.c:10:17: fatal error: lcd.h: No such file or directory compilation terminated.
时间: 2023-12-03 15:42:45 浏览: 122
电动车上牌管理系统 SSM毕业设计 附带论文.zip
这个错误提示是说在编译 `main.c` 文件时找不到 `lcd.h` 头文件。你需要确保在编译时添加了正确的头文件路径,以便编译器能够找到该头文件。可以尝试在编译命令中添加 `-I` 选项来指定头文件路径,例如:
```
arm-linux-gcc -I/path/to/header main.c -o main
```
其中 `/path/to/header` 是 `lcd.h` 头文件所在的路径。
阅读全文