Ubuntu安裝libevent

背景:

版本: libevent 2.1.6betalinux

linux下:

按照github官方作法:
$ sudo apt-get install openssl
$ mkdir build && cd build
$ cmake .. # Default to Unix Makefiles.
$ make
$ make verify # (optional)
$ make install
 
老版本:
$ tar zxvf libevent-1.2.tar.gz
$ cd libevent-1.2
$ ./configure –prefix=/usr
$ make
$ make install
 
也可採用:
apt-cache search libevent
apt-get install libevent-dev

注意:

linux下用qtcreator進行編程的時候注意點 
在安裝以後,利用Qtcreator進行項目管理的時候,須要在pro文件中添加以下: 
LIBS += -leventgit

正如在gcc中編譯的時候,添加以下: 
gcc -o basic basic.c -leventgithub

相關文章
相關標籤/搜索