- Checking support for ARCHIVE_CRYPTO_MD5_LIBC -- not found是什么错误
时间: 2024-03-04 10:51:25 浏览: 213
这个错误信息表示系统正在检查ARCHIVE_CRYPTO_MD5_LIBC功能是否可用,但是未找到该功能。
ARCHIVE_CRYPTO_MD5_LIBC是一个功能,它提供了在Libarchive库中使用MD5消息摘要算法的支持,具体使用系统的libc(C标准库)提供的实现。
如果您需要此功能用于您的应用程序或项目,您可能需要在系统上安装适当的库或软件包。这将根据您的操作系统和发行版而有所不同。安装库后,您可能需要重新运行配置检查,以验证ARCHIVE_CRYPTO_MD5_LIBC功能现在是否可用。
相关问题
./configure --prefix=/usr/local/nginx --user=www --group=www --with-http_stub_status_module --with-http_ssl_module 报错 checking for OS + Linux 2.6.32-754.35.1.el6.x86_64 x86_64 checking for C compiler ... not found ./configure: error: C compiler cc is not found
这个错误提示说明你的系统中没有找到C编译器,因此无法继续编译。你需要安装一个C编译器,例如gcc,来解决这个问题。
如果你使用的是Ubuntu或Debian操作系统,你可以使用以下命令安装gcc编译器:
```
sudo apt-get update
sudo apt-get install build-essential
```
如果你使用的是CentOS或Red Hat Enterprise Linux操作系统,你可以使用以下命令安装gcc编译器:
```
sudo yum update
sudo yum groupinstall 'Development Tools'
```
安装完成后,再次运行configure命令即可。如果还有问题,请告诉我。
-- Python checking for numpy module -- Python checking for numpy module - "import numpy" failed (is it installed?) -- -- Python checking for ruamel.yaml module -- Python checking for ruamel.yaml module - "import ruamel.yaml" failed (is it installed?) -- -- Configuring LibUHD support... -- Dependency Boost_FOUND = TRUE -- Dependency HAVE_PYTHON_MODULE_MAKO = FALSE CMake Error at cmake/Modules/UHDComponent.cmake:59 (message): Dependencies for required component LibUHD not met. Call Stack (most recent call first): CMakeLists.txt:433 (LIBUHD_REGISTER_COMPONENT) -- Configuring incomplete, errors occurred! See also "/home/firefly/workarea/uhd/host/build/CMakeFiles/CMakeOutput.log". See also "/home/firefly/workarea/uhd/host/build/CMakeFiles/CMakeError.log".
根据错误提示,看起来是缺少了一些依赖库,包括numpy和ruamel.yaml。可以尝试按以下步骤安装这些依赖库:
1. 安装numpy依赖库:
```
sudo apt-get install python-numpy
```
2. 安装ruamel.yaml依赖库:
```
sudo apt-get install python-ruamel.yaml
```
安装完成后,重新编译UHD即可。如果问题仍然存在,可以尝试检查是否缺少其他依赖库。
阅读全文