美文网首页
linux 安装 libfreenect,编译报错 C++ er

linux 安装 libfreenect,编译报错 C++ er

作者: 谢小帅 | 来源:发表于2019-01-12 17:09 被阅读43次

    先说原因:https://github.com/shumatech/BOSSA/issues/43
    总结来看:c++ 默认使用的版本不合适

    解决办法:https://blog.csdn.net/qq160816/article/details/54410497

    CMakeLists.txt 添加一行

    add_definitions(-std=c++11)
    

    ubuntu 13.04 自带的C++编译器组件 g++ 4.7.3 对 c++11 有良好支持。
    ubuntu 更高级的版本中,对 c++11 支持的不完全。

    ubuntu 16.04.11

    相关文章

      网友评论

          本文标题:linux 安装 libfreenect,编译报错 C++ er

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