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 10:42:28 浏览: 145
这个错误提示是编译器找不到 `lcd.h` 头文件,你需要确认你的编译器是否能够找到这个头文件。如果你已经安装了这个头文件,可以使用 `-I` 选项指定头文件的路径。例如,如果 `lcd.h` 文件在 `/usr/include` 目录下,那么你可以使用以下命令编译:
```
arm-linux-gcc main.c -o main -I/usr/include
```
如果你没有安装 `lcd.h` 头文件,你需要先安装这个头文件。根据你使用的操作系统和开发板不同,安装方法也可能不同。通常你可以在开发板的官方网站或者开发者社区中找到相应的安装方法。
相关问题
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.
这个错误提示是说在编译 `main.c` 文件时找不到 `lcd.h` 头文件。你需要确保在编译时添加了正确的头文件路径,以便编译器能够找到该头文件。可以尝试在编译命令中添加 `-I` 选项来指定头文件路径,例如:
```
arm-linux-gcc -I/path/to/header main.c -o main
```
其中 `/path/to/header` 是 `lcd.h` 头文件所在的路径。
阅读全文