我正在尝试在使用OpenSSL 1.0.0的Ubuntu 10.04 LTS上构建一些代码。当我运行make时,它将使用“ -lssl”选项调用g ++。来源包括:
#include <openssl/bio.h>
#include <openssl/buffer.h>
#include <openssl/des.h>
#include <openssl/evp.h>
#include <openssl/pem.h>
#include <openssl/rsa.h>
我跑了:
$ sudo apt-get install openssl
Reading package lists... Done
Building dependency tree
Reading state information... Done
openssl is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.
但是我猜想openssl包不包含该库。我在make上得到这些错误:
foo.cpp:21:25: error: openssl/bio.h: No such file or directory
foo.cpp:22:28: error: openssl/buffer.h: No such file or directory
foo.cpp:23:25: error: openssl/des.h: No such file or directory
foo.cpp:24:25: error: openssl/evp.h: No such file or directory
foo.cpp:25:25: error: openssl/pem.h: No such file or directory
foo.cpp:26:25: error: openssl/rsa.h: No such file or directory
如何在Ubuntu 10.04 LTS上安装OpenSSL C ++库?
我man g++
对-l选项做了一个和(在“链接的选项”下),其中指出:“链接器在标准目录列表中搜索库...”和“搜索的目录包括多个标准系统目录...”。这些标准系统目录是什么?
-dev
命名约定是正确的。您还可以使用synaptic
软件包管理器列出名称中包含libssl的所有软件包-浏览该列表及其描述可能会为您提供线索。
apt-cache search package-name