#include "eth_phy/phy.h" ^~~~~~~~~~~~~~~ compilation terminated.
时间: 2023-10-24 22:07:02 浏览: 140
linux下wpa_supplicant过学校802.1x认证的方法.
3星 · 编辑精心推荐
这个错误提示是说找不到 `phy.h` 文件。首先要确保你的编译环境中已经安装了相关的库和头文件,如果没有安装,可以通过以下命令安装:
```
sudo apt-get install libpcap-dev
```
如果已经安装了相关库和头文件,但还是出现这个错误,可能是因为编译器找不到头文件的路径。你可以通过在编译命令中添加 `-I` 参数指定头文件的路径,例如:
```
gcc -o myprogram myprogram.c -I/path/to/header/files
```
其中 `/path/to/header/files` 是 `phy.h` 文件所在的路径。
阅读全文