我需要在Mac上安装openssl-devel。但我尝试过brew和macport。它们都不起作用。
我也搜索了这个问题---在Mac上安装openssl-devel。但是,我没有找到确切的答案。
之前有人遇到过这种问题吗?
答案 0 :(得分:1)
此命令解决了我的问题:
brew install openssl@1.1
cp /usr/local/opt/openssl@1.1/lib/pkgconfig/*.pc /usr/local/lib/pkgconfig/
答案 1 :(得分:0)
我想您想编译C ++程序,并且C ++代码包含openssl头文件,因此只需使用brew
安装openssl:
brew install openssl
或通过以下方式安装openssl 1.1.1
brew install openssl@1.1
然后,您可以在include
或lib
中找到/usr/local/opt/openssl@1.0/
和/usr/local/opt/openssl@1.1
文件夹,并调整您的Makefile,如下所示修改路径:
OPENSSL_DIR = /usr/local/opt/openssl@1.1
OPENSSL_SUPPORT = -I$(OPENSSL_DIR)/include -L$(OPENSSL_DIR)/lib