美文网首页代码片段分享
Android NDK JNI error 'to_string

Android NDK JNI error 'to_string

作者: 花艺荣 | 来源:发表于2021-07-13 16:39 被阅读0次

    Solution:

    Add C++11 support in Application.mk if building static libraries:
    APP_STL := c++_static

    or use c++_shared if building shared libraries:
    APP_STL := c++_shared

    Not use
    APP_STL := gnustl_static

    相关文章

      网友评论

        本文标题:Android NDK JNI error 'to_string

        本文链接:https://www.haomeiwen.com/subject/gblspltx.html