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.c
driver.h
driver_ddi.h
debug.h
common.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'
]
私が設定した間違ったフラグはありますか?