美文网首页
error: #error This file requires

error: #error This file requires

作者: unique_可乐 | 来源:发表于2020-02-07 13:08 被阅读0次

    在AS工程中,编译遇到下面错误:
    error: #error This file requires compiler and library support for the ISO C++ 2011 standard
    原因:
    根据报错信息,编译文件和so需要对c++11支持

    解决办法:
    1、在CMakeLists.txt文件里的上方添加

    SET( CMAKE_CXX_FLAGS "-std=c++11 -O3")
    #或SET(CMAKE_CXX_FLAGS "-std=c++0x"),-O3和0x有什么区别?
    

    2、升级NDK版本到最新

    相关文章

      网友评论

          本文标题:error: #error This file requires

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