Loading... 转载自 https://www.wzl1.top/ # 先看以下文件 先按此文件安装,遇到问题再看本文。 [VScode+Cygwin配置.pdf](https://igetq.com/usr/uploads/2022/09/3676441683.pdf) # 完整的vscode c项目  **把代码中【cygwin根目录】替换成你自己的cygwin根目录,cygwin不要装在C盘,其中settings.json看个人需求,没有问题也不大** # settings.json ```json { "files.associations": { "stdio.h": "c" } } ``` # launch.json ```json { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "(gdb) Launch", "preLaunchTask": "gcc.exe build active file",//调试前执行的任务,就是之前配置的tasks.json中的label字段 "type": "cppdbg", "request": "launch",//请求配置类型,可以为launch(启动)或attach(附加) "program": "${fileDirname}\\${fileBasenameNoExtension}.exe", "args": [], "stopAtEntry": false, "cwd": "${workspaceFolder}", "environment": [], "externalConsole": true,//true显示外置的控制台窗口,false显示内置终端 "MIMode": "gdb", "miDebuggerPath": "【cygwin根目录】/bin/gdb.exe",//这个地方必须改,改成你的cygwin64的bin目录,末尾加上\\gdb.exe,记得是双斜杠,我的是E:\\CygWin64\\bin\\gdb.exe "setupCommands": [ { "description": "Enable pretty-printing for gdb", "text": "-enable-pretty-printing", "ignoreFailures": true } ] } ] } ``` ## 还有一种 ```json { // 使用 IntelliSense 了解相关属性。 // 悬停以查看现有属性的描述。 // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "gcc.exe - 生成和调试活动文件", "type": "cppdbg", "request": "launch", "program": "${fileDirname}\\${fileBasenameNoExtension}.exe", "args": [], "stopAtEntry": false, "cwd": "${fileDirname}", "environment": [], "externalConsole": true,//是否使用外部控制台 "MIMode": "gdb", "miDebuggerPath": "C:\\cenvirment\\MinGW\\bin\\gdb.exe",//此处填写gdb.exe的路径 "setupCommands": [ { "description": "为 gdb 启用整齐打印", "text": "-enable-pretty-printing", "ignoreFailures": true } ], "preLaunchTask": "C/C++: gcc.exe 生成活动文件" } ] } ``` # c_cpp_properties.json ```json { "configurations": [ { "name": "Win32", "includePath": [ "${workspaceFolder}/**", "【cygwin根目录】/lib/gcc/x86_64-pc-cygwin/11/include" ], "defines": [ "_DEBUG", "UNICODE", "_UNICODE" ], "compilerPath": "【cygwin根目录】/bin/gcc.exe", "cStandard": "c11", "cppStandard": "c++17", "intelliSenseMode": "gcc-x64" } ], "version": 4 } ``` # takes.json ```json { "version": "2.0.0", "tasks": [ { "type": "shell", "label": "gcc.exe build active file", "command": "【cygwin根目录】/bin/gcc.exe", "args": [ "-g", "${file}", "-o", "${fileDirname}\\${fileBasenameNoExtension}.exe" ], "options": { "cwd": "【cygwin根目录】/bin" //自行替换 }, "problemMatcher": [ "$gcc" ], "group": "build" } ] } ``` # 常见问题 ## 1.preLaunchTas退出代码1   **解决:检查launch.json的miDebuggerPath,下载最新版,安装的时候添加到Path,全部打勾**  ## 2. 无法检测到stddef.h  **解决:** ```json //修改c_cpp_properties.json { "configurations": [ { "name": "Win32", "includePath": [ "${workspaceFolder}/**", "【CygWin64根目录】/lib/gcc/x86_64-pc-cygwin/11/include" ], "defines": [ "_DEBUG", "UNICODE", "_UNICODE" ], "compilerPath": "【CygWin64根目录】/bin/gcc.exe", "cStandard": "c11", "cppStandard": "c++17", "intelliSenseMode": "gcc-x64" } ], "version": 4 } ``` **把【CygWin64根目录】替换下,换成你CygWin64的根目录,不要带/bin** ** ## 3.没有调试Json Wtih Comments的扩展  **解决:对.c或者.cpp文件进行调试,不要对Json文件进行调试** ## 4.gcc或者g++不是内部或外部命令 **解决:从Cygwin安装gcc、g++,环境变量配置** ## 5.生成了.exe可执行文件,但是无法调试 **解决:从Cygwin安装gdb** ## 6.重装vscode有弹窗  **解决:关闭所有vscode窗口** ## 7.打开****.json  **解决:多半就是你配置的问题,自习检查下,或者就是你文件名、配置名、信息写错了** ## 8.(gdb) launch已经在运行,是否需要启动另一个实例?   **解决:把多的实例关了就行,右下角终端会有垃圾桶,点了就是**  ## 9.sh: pause: command not found **部分同学喜欢用system("pause");来暂停,但是这个命令只能用于windows系统,但是Cygwin是类Unix系统,你可以想Linux中使用暂停,使用pause()函数来达到暂停功能** ## 10.Unable to start debugging  **重新建个目录,重新建,不要有中文路径** ## 11.无法将"bin"项 cmdlet  **解决:重装vscode最新版,安装的时候全选(添加到path)**  ## 12.无法设置系统环境变量,修改了又改回去  此电脑→属性→高级系统设置 ## 13.路径报错 **不要有中文和空格** ## n.通篇爆红 **代码爆红或者标题栏有这种提示的(红色+数字,数字代表有多少个错)** **从pdf复制代码容易出错,自己改改,看看目录** 最后修改:2024 年 09 月 07 日 © 允许规范转载 赞 1 如果觉得我的文章对你有用,请随意赞赏
1 条评论
?励志类评语?