美文网首页
c++运行过程常见错误

c++运行过程常见错误

作者: 小石头在长大 | 来源:发表于2021-02-04 10:18 被阅读0次

    1、/usr/bin/ld: cannot find -lstdc++

    collect2: error: ld returned 1 exit status

    ninja: build stopped: subcommand failed.

     1)缺少c++编译环境,如g++等,需要安装指定好

     2)如果有/usr/bin的权限,在CentOS 7中,使用static方法编译,需要安装static version of glibc-static libstdc++-static。使用如下命令安装:yum install glibc-static libstdc++-static

    2、no module named yum

      1)可能没有yum安装权限,别安装了

      2)有权限的情况下,降级python找到适配yum的python版本

    相关文章

      网友评论

          本文标题:c++运行过程常见错误

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