3

我刚刚尝试从语言文档中运行简单的 HTTP 服务器。程序因错误而失败。

/usr/bin/ld: cannot find -lssl
collect2: error: ld returned 1 exit status
Error: execution of command failed with code: 1: `cc -o "/home/rasmus/dev/crystal/projects/hello/.crystal/crystal-run-hello.tmp" "${@}"  -rdynamic  -lssl -levent -lrt -lpcl -lpcre -lgc -lpthread -ldl`

该程序已从文档中复制粘贴。

我可以确认该程序确实/确实在我的客户机上运行,​​但不在我的主机上。两者都是 Ubuntu 14.04.3 安装。

4

1 回答 1

4

问题只是没有安装 SSL 库。如果你有同样的问题,你可以简单地运行sudo apt-get install libssl-dev. 这应该安装修复错误所需的一切。

于 2015-09-21T07:11:38.540 回答