在 Clang 中激活 C++11 支持
我已经下载并构建了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您收到的是警告,而不是错误。
-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.