yum 可以找到 openssl,但 pkg-config 找不到

yum 可以找到 openssl,但 pkg-config 找不到

我发现 openssl 已经安装在我的服务器上

# yum list installed | grep openssl
openssl.x86_64                          1:1.0.2k-26.el7_9        @updates
openssl-libs.x86_64                     1:1.0.2k-26.el7_9        @updates

但是,pkg-config 找不到它

# pkg-config --libs --cflags openssl
Package openssl was not found in the pkg-config search path.
Perhaps you should add the directory containing `openssl.pc'
to the PKG_CONFIG_PATH environment variable
No package 'openssl' found

我想知道哪里出了问题以及如何解决。

答案1

该命令pkg-config用于开发库,与安装在操作系统中的系统包无(直接)关系。

相关内容