15

YCM と Syntastic を VIM にインストールしました。通常は正常に動作しますが、コードにエラーが検出されたときに問題が発生し、いくつかのヘッド ファイル (プロジェクトのヘッド ファイル) が見つからないことが示されます。

私のディレクトリツリーは以下のとおりです。

TOP
├── debug
│   ├── debug.c
│   ├── debug.h
│   ├── debug.mk
│   └── instrument.c
├── driver
│   ├── driver.c
│   ├── driver_ddi.c
│   ├── driver_ddi.h
│   ├── driver.h
│   └── driver.mk
├── include
│   └── common.h
├── libs
├── Makefile
├── mw
│   ├── manager.c
│   └── mw.mk
└── root
    ├── main.c
    └── root.mk

をTOPにコピーし.ycm_extra_conf.pyましたが、その間、TOPにもファイルを生成tagしてcscopeファイルするため、TOPでファイルを開くたびに、次のようになります。

howchen@host:~/Work/c/sample/src
-> gvim ./driver/driver.c

VIMに追加tagしてファイルできるたびに確認します。問題は、ヘッドファイルを含むcscopeを開くと、、、、以下のようなコードです:driver.cdriver.hdriver_ddi.hdebug.hcommon.h

#include <stdio.h>
#include <stdlib.h>
#include "math.h"
#include "common.h"
#include "debug.h"
#include "driver_ddi.h"
#include "driver.h"

syntasticまたはYCM常にそれが見つからないことcommon.hを示し、debug.h他のヘッドファイルは問題ありません。

私のYCMとvimrcファイルの構文構成部分:

" YCM
"   let g:ycm_extra_conf_globlist = ['~/.vim/bundle/YouCompleteMe/cpp/ycm/*','!~/*']
    let g:ycm_global_ycm_extra_conf = '~/.vim/bundle/YouCompleteMe/cpp/ycm/.ycm_extra_conf.py'

" Syntastic
    let g:syntastic_c_checkers=['make']
    let g:syntastic_always_populate_loc_list = 1
    let g:syntastic_check_on_open=1
    let g:syntastic_enable_signs=1
    let g:syntastic_error_symbol = '✗'
    let g:syntastic_warning_symbol = '⚠'
    set statusline+=%#warningmsg#
    set statusline+=%{SyntasticStatuslineFlag()}
    set statusline+=%*gbar

私の.ycm_extra_conf.py書き込みflags変数は次のとおりです。

flags = [
'-Wall',
'-Wextra',
'-Werror',
'-Wc++98-compat',
'-Wno-long-long',
'-Wno-variadic-macros',
'-fexceptions',
'-DNDEBUG',
'-std=c99',
# ...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', #I don't know if I need remove -x
'c',
'-isystem',
'../llvm/include',
'-isystem',
'../llvm/tools/clang/include',
'-I',
'.',
'-I',
'../driver'
'-I',
'../debug'
'-I',
'../include'
'-I',
'../include'
]

私が設定した間違ったフラグはありますか?

4

1 に答える 1