链接OpenSSL时没有引用BIO函数

时间:2015-05-09 15:41:58

标签: c linux ssl compilation openssl

我试图用openssl-references编译一个c程序。我正在使用Linux Mint 17.1和开发包" libssl-dev"已安装。

#include <openssl/bio.h>
#include <openssl/err.h>
#include &lt;openssl/ssl.h>
...

void send_smtp_request(BIO *bio, const char *req)
{
    BIO_puts(bio, req);
    BIO_flush(bio);
    printf("%s", req);     
}

如果我用以下代码编译代码:

gcc -o client bio-ssl-smtpcli2.c

我收到了这个错误:

/tmp/ccCHrti2.o: In function 'send_smtp_request':
bio-ssl-smtpcli2.c:(.text+0x1f):  undefined reference to 'BIO_puts'
bio-ssl-smtpcli2.c:(.text+0x3a):  undefined reference to 'BIO_ctrl'

有人知道如何解决这个问题吗?

1 个答案:

答案 0 :(得分:5)

我设法使用:

编译你的函数
gcc main.c -o main -I /usr/local/ssl/include -L /usr/local/ssl/lib -lssl -lcrypto -Wall

更多解释:

  • -I /usr/local/ssl/include/usr/local/ssl/include添加到包含搜索路径。

  • -L /usr/local/ssl/lib/usr/local/ssl/lib添加到图书馆搜索路径。

  • -lssl -lcrypto链接库libcrypto和libssl

  • -lcrypto必须遵循-lssl因为ld是单通道链接器

  • Wall启用所有警告。

我的猜测是你错过了-lcrypto