clang_complete 错误:未知参数:'--std=c++0x'
铿锵++版本:2.9 vim 版本:7.3
我用以下源代码
--std=c++0x
test.cc 编写了 .clang_comple
:
int main () {
return 0;
}
并且 clang_complete 显示
test.cc|| unknown argument: '--std=c++0x'
在快速修复列表中。
我尝试添加该选项,但
set g:clang_user_options="--std=c++0x"
问题仍然存在。
尝试跟踪clang_complete的一些代码,但仍然无法解决该问题。所有其他选项都可以正确处理,但不能正确处理 --std=c++0x
我错过了什么吗?或者做错了什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 --std=c++0x 而是
-std=c++0x
。 org/" rel="nofollow">文档.尝试一下,但我从未使用过 clang。来自文档:
It isn't
--std=c++0x
but-std=c++0x
according to the docs. Try it but I have never used clang though.From docs :
在.vimrc中,我通常使用以下配置:
这样,我可以按 编译*.cpp文件,
然后使用quickfix窗口来调试错误。
In .vimrc, I usually use the following config:
Thus, I can press to compile the *.cpp files and
then use quickfix window to debug errors.