-
Notifications
You must be signed in to change notification settings - Fork 43
c cpp open source
cheyiliu edited this page Nov 27, 2014
·
12 revisions
libevent c http://libevent.org/
-
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
Just build something.