ubuntu下编译安装uWebSockets
最近开始接触websocket,第一次装的时候,还是遇到了些问题,这里记录一下
1.从git下载uWebSockets
地址:https://github.com/uNetworking/uWebSockets
git clone https://github.com/uNetworking/uWebSockets.git
2.第一步下载下来的uSockets目录是空的,需要单独下载,是另外一个git仓库
地址:https://github.com/uNetworking/uSockets
git clone https://github.com/uNetworking/uSockets.git
3.安装openssl开发包
apt-get install libssl-dev
4.编译
最新的uWebSockets使用的是c++17,这个版本有点高,可以切换到c++11标准的分支v0.14
git checkout v0.14
make
make install
5.需要注意的地方,可能会编译出错,openssl的版本需要匹配1.1.1
原文链接:https://www.cnblogs.com/knight-monkey/archive/2020/06/13/study_uwebsockets.html
以上是 ubuntu下编译安装uWebSockets 的全部内容, 来源链接: utcz.com/z/517409.html