Can anyone please tell me how to build C-ares library in android (ndk-build)
相关问题
- How to fix NDK build error for HelloCardboard samp
- android-ndk gnustl_static exe not working
- Error SSL archive symbol table (run ranlib)
- connect error of socket programming via ndk
- ffmpeg for Android: neon build has text relocation
相关文章
- What share of Android devices benefits from Libjpe
- Android Studio 3.3 Stuck at Project Setup:reading
- Android NDK: calling java method from JNI C class
- How to use pthreads with Android NDK? [closed]
- Writeable and Executable location on Android
- How to implement call recording with android ndk
- how to access /data/app,/proc on Android for norma
- android NDK: objcopy --rename-sym does not work (n
Here's how to build it as a static library for ARMv7 with the NDK standalone toolchain:
That's it. The static library is deployed under
build/lib/libcares.a
.If you target other archs (e.g.
armeabi
,x86
) repeat theconfigure
with the proper-march
value and re-build the library for each arch. Also, feel free to:configure
options that fit your needs (e.g. you may want to build a dynamic library in addition, enable/disable some features, etc).