checking iconv.h usability... no checking iconv.h presence... yes configure: WARNING: iconv.h: present but cannot be compiled configure: WARNING: iconv.h: check for missing prerequisite headers? configure: WARNING: iconv.h: see the Autoconf documentation configure: WARNING: iconv.h: section "Present But Cannot Be Compiled" configure: WARNING: iconv.h: proceeding with the compiler's result checking for iconv.h... no
时间: 2024-02-03 17:13:14 浏览: 119
stavens_opencv_optical_flow.rar_site:www.pudn.com_things
这个错误是因为在编译过程中,找到了 iconv.h 的头文件,但是无法编译通过。这可能是因为缺少一些前置依赖项,你可以尝试安装这些依赖项,以解决这个问题。你可以尝试使用以下命令来安装相关的依赖项:
```
sudo apt-get install libiconv-hook-dev
```
如果你使用的是其他 Linux 发行版,请使用该发行版的包管理器来安装相应的依赖项。
阅读全文