linux vscode中添加头文件路径,[解决]VSCode在Linux下导入c语言头文件忠告
VSCode导入#include 文件时提醒以下错误:#include errors detected. Please update your includePath. IntelliSense features for this translation unit (/wk/c01/main.c) will be provided by the Tag Parser.cannot open sou
VSCode导入#include 文件时提醒以下错误:
#include errors detected. Please update your includePath. IntelliSense features for this translation unit (/wk/c01/main.c) will be provided by the Tag Parser.cannot open source file "stddef.h" (dependency of "stdio.h")
这是由于设置中没有指定依赖路径导致的,在c_cpp_properties.json中includePath的默认设置只有当前目录,需要将系统依赖加入。
在下令行内里输入 gcc -v -E -x c++ -在效果内里找到头文件目录,然后添加到includepath中。
注重,这里凭据 VS code 操作的是LInux 和 Windows下的文件会有所不同,解决办法不一样
对于使用 VScode 毗邻Linux,操作Linux下的C++文件泛起这个问题的解决办法是:
在terminal 中输入 gcc -v -E -x c++ - ,然后将最下的路径复制到 c_cpp_properties.json中 includePath下
若是输入上面的下令后提醒 gcc 下令不存在,那说明当前Linux另有安装gcc, 那应该先输入下面的下令安装gcc, 然后输入上面的下令
yum -y install gcc gcc-c++kernel-devel //安装gcc、c++编译器以及内核文件
设置好的 c_cpp_properties.json 文件如下:
若是你是用 VS code 遍历windows下的c++文件,然后泛起这个问题
那么应该先按快捷键 Win + R, 然后输入 cmd, 在下令行窗口中输入 gcc -v -E -x c++ -
然后复制最下面的路径到 c_cpp_properties.json中 includePath下即可
文章参考:
原文链接:https://www.cnblogs.com/hi3254014978/p/12743854.html
本站声明:网站内容来源于网络,若有侵权,请联系我们,我们将及时处理。
更多推荐
所有评论(0)