3

Vim で YouCompleteMe プラグインを使用すると問題が発生しました。

私はmacOSを使用しています。取り付け要領に従い、--clang-completerオプションで取り付けます。C++03 コードを書いているときは問題なく動作します。しかし、いくつかの C++11 コードを追加すると、プラグインが不平を言い始めます。

を試した後:YcmDiags、次のように表示されます。

Work/spike/cpp/main.cpp|7 col 12 error| rvalue references are incompatible with C++98
Work/spike/cpp/main.cpp|18 col 10 error| rvalue references are incompatible with C++98
Work/spike/cpp/main.cpp|18 col 5 error| 'auto' type specifier is incompatible with C++98

つまり、YouCompleteMe は C++11 を認識したようですが、コンパイル オプションに問題があります。.ycm_extra_config.pyこれを含むを確認します。

flags = [
'-Wall',
'-Wextra',
'-Werror',
'-Wc++98-compat',
'-Wno-long-long',
'-Wno-variadic-macros',
'-fexceptions',
'-DNDEBUG',
# You 100% do NOT need -DUSE_CLANG_COMPLETER in your flags; only the YCM
# source code needs it.
'-DUSE_CLANG_COMPLETER',
# THIS IS IMPORTANT! Without a "-std=<something>" flag, clang won't know which
# language to use when compiling headers. So it will guess. Badly. So C++
# headers will be compiled as C headers. You don't want that so ALWAYS specify
# a "-std=<something>".
# For a C project, you would set this to something like 'c99' instead of
# 'c++11'.
'-std=c++11',
# ...and the same thing goes for the magic -x option which specifies the
# language that the files to be compiled are written in. This is mostly
# relevant for c++ headers.
# For a C project, you would set this to 'c' instead of 'c++'.
'-x',
'c++',
'-isystem',
'../BoostParts',
'-isystem',
# This path will only work on OS X, but extra paths that don't exist are not
# harmful
'/System/Library/Frameworks/Python.framework/Headers',
'-isystem',
'../llvm/include',
'-isystem',
'../llvm/tools/clang/include',
'-I',
'.',
'-I',
'./ClangCompleter',
'-isystem',
'./tests/gmock/gtest',
'-isystem',
'./tests/gmock/gtest/include',
'-isystem',
'./tests/gmock',
'-isystem',
'./tests/gmock/include',
'-isystem',
'/usr/lib/c++/v1'
]

まあ、それはインターネットからのデフォルト設定です。しかし、私はそれを見-std=c++11て、なぜそれが機能していないのですか? 何か助けはありますか?

4

0 に答える 0