c cpp open source - cheyiliu/All-in-One GitHub Wiki
http://libevent.org/
libevent cres
android ndk compile
-
libevent cross compile for android, libevent-2.0.21-stable 2. export PATH=/home/housy/ndk-cross/bin/:$PATH , see android-NDK-交叉编译 2. ./configure CC=arm-linux-androideabi-gcc --host=arm-linux --prefix=/home/housy/opt/libevent_android_compile/ 2. make clean && make && make install
-
app (based on libevent) cross compile for android 3. export PATH=/home/housy/ndk-cross/bin/:$PATH , see android-NDK-交叉编译 3. export PKG_CONFIG_PATH=~/opt/libevent_android_compile/lib/pkgconfig/ NOTE: configure没用到,则忽略这步 3. ./configure CC=arm-linux-androideabi-gcc --host=arm-linux CFLAGS=-I/home/housy/opt/libevent_android_compile/include LDFLAGS=-L/home/housy/opt/libevent_android_compile/lib 3. make clean && make && make install