ld.lld:错误:找不到库 -lstdc++

ld.lld: error: unable to find library -lstdc++

提问人:Foobar 提问时间:10/28/2023 更新时间:10/28/2023 访问量:103

问:

CMake 抱怨我没有编译一个有效的 c++,因为错误:

ld.lld: error: unable to find library -lstdc++

我已将其缩小到以下范围:

  • 给定程序int main(){return 0;}
  • 和命令
/usr/bin/clang++ -std=gnu++17 -MD -MT prog.o -MF prog.d -o prog.o -c prog.cpp
/usr/bin/clang++ -fuse-ld=lld prog.o -o prog

第二个命令失败,并出现给定的错误。如何修复我的 C++ 安装以使其正常工作?

C++ CMake 链接器错误

评论


答: 暂无答案