编译测试程序

#include <event2/event.h>
#include <iostream>

using namespace std;

int main()
{
    cout << "test libevent.
";
    event_base * base = event_base_new();
    if (base)
    {   
        cout << "event_base_new success.
";
    }   
    return 0;
}
原文地址:https://www.cnblogs.com/orejia/p/13060099.html