1. ホーム
  2. c++

[解決済み】UbuntuにOpenSSLライブラリをインストールする方法を教えてください。

2022-03-28 04:52:55

質問

Ubuntu 10.04 LTSでOpenSSL 1.0.0を使用するコードをビルドしようとしています。 makeを実行すると、g++が"-lssl"オプション付きで起動します。 ソースは以下の通りです。

#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 オプションには次のように記述されています: " The linker searches a standard list of directories for the library..." and " The directories searched includes several standard system directories..." その標準的なシステム・ディレクトリとは何でしょうか?

解決方法は?

開発版パッケージであるlibssl-devをインストールしたい。

sudo apt-get install libssl-dev