在YouCompleteMe+Syntastic中添加和取消对C++11的支持

前端之家收集整理的这篇文章主要介绍了在YouCompleteMe+Syntastic中添加和取消对C++11的支持前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
                                            <table class="text"&gt;<tbody><tr class="li1"&gt;

<td class="ln"><pre class="de1">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

添加对c++11的支持:   /.vimrc中添加:     let g:syntastic_cpp_compiler = ‘g++‘  "change the compiler to g++ to support c++11.   let g:syntastic_cpp_compiler_options = ‘-std=c++11 -stdlib=libc++‘ "set the options of g++ to suport c++11. .ycm_extra_conf.py中:     将flags数组中的‘-Wc++98-compat‘修改为‘-Wnoc++98-compat‘       取消对C++11的支持:   /.vimrc中去掉添加的两行syntastic配置。   .ycm_extra_conf.py中改回来,并且在flags数组中将‘-std=c++11‘修改为‘-std=c99‘ 原文链接:https://www.f2er.com/note/422296.html

猜你在找的程序笔记相关文章