在VScode上配置C/C++

具体步骤文章参考:
Visual Studio Code如何编写运行C、C++? - 知乎用户的回答 - 知乎
https://www.zhihu.com/question/30315894/answer/154979413
但照着配置时发现连续报错,比如:

  1. Unable to start debugging. Program path '***' is missing or invalid.
    2.The C/C++ extension is still installing. See the output window for more information.
    第一个问题主要是由于gdb没有链接好,只要在launch.json中将 "miDebuggerPath":后面的gdb.exe添加路径,也就是你之前安装的MinGw中bin目录下gdb.exe路径,在本文作者所用路径就是:"C:/LLVM/bin/gdb.exe"
    第二个问题是由于插件没有加载好,只要重新加载插件/重新打开VScode就可以解决。

你可能感兴趣的:(在VScode上配置C/C++)