gpt4 book ai didi

c++ - Clang 看不到基本标题

转载 作者:IT老高 更新时间:2023-10-28 14:00:56 27 4
gpt4 key购买 nike

我尝试在 Fedora 20 上使用 Clang 编译简单的 hello world,我得到以下输出:

d.cpp:1:10: fatal error: 'iostream' file not found

#include <iostream>

我不知道如何解决它。

最佳答案

这是因为 g++ 没有安装,所以 libstdc++ 不存在。

您可以安装 g++,或者如果首选 LLVM,请安装 LLVM libc++ 并指定要使用它,如下所示:

sudo apt-get install libc++-dev
clang++ -stdlib=libc++ <rest of arguments>

您可能希望将/usr/bin/c++ 链接到默认编译器:

ln -s /usr/bin/c++ /usr/bin/clang++-libc++

然后简单地使用

编译
$ c++ <args_as_usual>

关于c++ - Clang 看不到基本标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26333823/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com