clang_complete 错误:未知参数:'--std=c++0x'

发布于 2024-12-03 20:24:36 字数 523 浏览 0 评论 0 原文

铿锵++版本: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 我错过了什么吗?或者做错了什么?

clang++ version: 2.9
vim version: 7.3

I write my .clang_comple

--std=c++0x

with follow source code test.cc:

int main () {
    return 0;
}

And the clang_complete shows

test.cc|| unknown argument: '--std=c++0x'

in the quickfix list.

I try to add the option with

set g:clang_user_options="--std=c++0x"

the problem is still there.

Tried to trace some code of clang_complete, but still can not solve that problem. All other options can be processed correctly, but not --std=c++0x Do I miss anything? or made something wrong?

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

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

发布评论

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

评论(2

π浅易 2024-12-10 20:24:36

根据 --std=c++0x 而是 -std=c++0x。 org/" rel="nofollow">文档.尝试一下,但我从未使用过 clang。

来自文档:

要与 clang 一起使用,您可以:

  • clang++ -stdlib=libc++ test.cpp
  • clang++ -std=c++0x -stdlib=libc++ test.cpp

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 :

To use with clang you can:

  • clang++ -stdlib=libc++ test.cpp
  • clang++ -std=c++0x -stdlib=libc++ test.cpp
安人多梦 2024-12-10 20:24:36

在.vimrc中,我通常使用以下配置:

let g:clang_user_options='-std=c++0x -x c++' 
map <F2>  :call g:ClangUpdateQuickFix()<CR>

这样,我可以按 编译*.cpp文件,

然后使用quickfix窗口来调试错误。

In .vimrc, I usually use the following config:

let g:clang_user_options='-std=c++0x -x c++' 
map <F2>  :call g:ClangUpdateQuickFix()<CR>

Thus, I can press to compile the *.cpp files and

then use quickfix window to debug errors.

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