在 Clang 中激活 C++11 支持

发布于 2024-12-11 14:03:19 字数 527 浏览 0 评论 0原文

我已经下载并构建了 clang 版本 3.0,以便使用 C++11 功能,但是我收到此错误(即使我正在使用 -Wc++11 -extensions 标志)。

S:\llvm\code>clang++.exe -Wc++11-extensions variadic.cpp
variadic.cpp:4:19:警告:可变参数模板是 C++11 扩展 [-Wc++11-extensions]
模板 <类型名称...参数>

我已经在 Windows 7(64 位)上使用 VS10 构建了 clang,并且构建成功通过。


编辑:正如@cli_hlt指出这是一个警告而不是错误,该错误是我没有粘贴的无法执行命令:程序无法执行。根本原因是 link.exe 不在 PATH 中。一旦我从 VS 命令提示符运行,一切都很好。

I've downloaded and built clang version 3.0 in order to play around a bit with C++11 features, however I get this error (even though I am using the -Wc++11-extensions flag).

S:\llvm\code>clang++.exe -Wc++11-extensions variadic.cpp
variadic.cpp:4:19: warning: variadic templates are a C++11 extension [-Wc++11-extensions]
template <typename... Args>

I've built clang with VS10 on Windows 7 (64bit) and the build passed successfully.


Edit: As @cli_hlt pointed out this is a warning not an error, the error is something I did not paste unable to execute command: program not executable. The root cause for that was that link.exe was not in the PATH. Once I ran from a VS command prompt all was well.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋意浓 2024-12-18 14:03:19

您收到的是警告,而不是错误。

-W 开关用于启用编译器警告。因此,根据我的理解,通过使用 -Wc++11-extensions,您可以告诉编译器在您使用 C++11 扩展时发出警告。

这正是这里发生的情况。

You are getting a warning, not an error.

The -W switch is used to enable compiler warnings. So for my understanding, by using -Wc++11-extensions you tell the compiler to warn you if you are using C++11 extensions.

And thats exactly what happens here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文