赞
踩
tar zxvf libevent-2.0.10-stable.tar.gz
cd libevent-2.0.10-stable
./configure --prefix=/usr
make
make install
坑:
tar zxvf libevent-2.0.10-stable.tar.gz
cd libevent-2.0.10-stable
./configure --prefix=/home/arm/libevent --host=arm-linux-gnueabihf CC=arm-linux-gnueabihf-gcc CXX=arm-linux-gnueabihf-g++
make
make install
cmake_minimum_required(VERSION 2.8.4) project(test_lib) set(CMAKE_CXX_STANDARD 14) set(INC_DIR /home/arm/libevent/include) set(LINK_DIR /home/arm/libevent/lib) include_directories(${INC_DIR}) link_directories(${LINK_DIR}) link_libraries(event) add_executable(test_lib main.cpp) target_link_libraries(test_lib event)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。