Hey everybody, I’ve stumbled upon the same issues as couple other people before (http://lists.pjsip.org/pipermail/pjsip_lists.pjsip.org/2018-June/040966.html). In file included from ../../pjlib/include/pj/compat/size_t.h:28: In file included from /usr/src/android-ndk-r17/sources/cxx-stl/llvm-libc++/include/stddef.h:40: /usr/src/android-ndk-r17/sources/cxx-stl/llvm-libc++/include/__config:169:10: fatal error: 'features.h' file not found I really did not want to downgrade to workaround it so I dug deeper and solved it (not sure the solution is 100% perfect, I’m not really into Android that much :)). Patch (configure-android): @@ -214,7 +214,7 @@ if test "x${NDK_TOOLCHAIN}" = "x"; then else # llvm STDCPP_TC="${ANDROID_NDK_ROOT}/sources/cxx-stl/llvm-libc++" - STDCPP_CFLAGS="-I${STDCPP_TC}/include -I${ANDROID_NDK_ROOT}/sysroot/usr/include" + STDCPP_CFLAGS="-I${STDCPP_TC}/include" STDCPP_LIBS="-lc++_static -lc++abi" STDCPP_LDFLAGS="-L${STDCPP_TC}/libs/${TARGET_ABI}/" fi PS: is there a way to report bugs to pjproject other than this mailing list? I have not found a way to do it in trac. Regards, Lukas |
_______________________________________________ Visit our blog: http://blog.pjsip.org pjsip mailing list pjsip@xxxxxxxxxxxxxxx http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org