Qt C++ Android compilation bionic header error -
I am trying to compile a simple C ++ static library for Android with QT creator. Although I am getting this error:
#Terror Bionic Header CTEP does not define either _U nor _CTYPE_U
I Android NDK R10b, Java jdk1.8.0_20, ATT-Bundle-Linux-X86-20140702 I am compiling with Android 6.5 and Qt 5.3 for Android GCC (Arm-4.8).
I am including several Linux libraries: jsoncpp, libuuid, libblutetooth and libzmq.
The above libraries Path for
If someone can point me in a certain direction, then I appreciate it.
Yes, because you are included in your system, the path is not included, the path in the Android system is included is. If you build for Android then there is no reason to include it. If you need a library for yourself then the Android environment requires you to compile and install it in your Android toolchain.
For example, see how I install Android Labs:
Comments
Post a Comment