bin554385863 发表于 2019-10-28 19:15:13

本帖最后由 bin554385863 于 2019-10-28 19:16 编辑

_2_ 发表于 2019-10-27 18:37
不想再安装另一个了......
我只想问问这个lauch.json该怎么写

VS插件:

Configur C Compiling

创建此扩展是为了自动创建launch.json、tasks.json文件和用于c项目的简单makefile。它还生成c_cpp_properties.json,其中包括windows中的mingw include路径。



特征

生成launch.json,使vscode能够启动c应用程序,并在tasks.json中生成编译源代码的任务。



此扩展名只有一个命令:生成配置并覆盖4个文件。



要求

您需要Windows中的MINW或其他叉和VSCode的C/C++扩展。



扩展设置

此扩展提供以下设置:



configure-c-compiling.mingw path:设置windows中mingw文件夹的完整路径
-----------------------------------------------------------------------------------------------------------------
我的json
必须设置了Windows的MinGW的环境变量
{
    // 使用 IntelliSense 了解相关属性。
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations":
    [
      {
            "name": "g++.exe build and debug active file",
            "type": "cppdbg",
            "request": "launch",
            "program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
            "args": [],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}",
            "environment": [],
            "externalConsole": false,
            "MIMode": "gdb",
            "miDebuggerPath": "E:\\My Program\\MinGW\\bin\\gdb.exe",//--------gdb的路径
            "setupCommands": [
                {
                  "description": "Enable pretty-printing for gdb",
                  "text": "-enable-pretty-printing",
                  "ignoreFailures": true
                }
            ],
            "preLaunchTask": "g++.exe build active file"
      }
    ]
}

安装完插件以后删除所有的配置文件,
然后随便运行一个C代码;
让插件自己生成

_2_ 发表于 2019-11-17 15:47:44

bin554385863 发表于 2019-10-28 19:15
VS插件:

Configur C Compiling


还得帮我一下:debug的时候它说:

bin554385863 发表于 2019-11-17 17:52:59

_2_ 发表于 2019-11-17 15:47
还得帮我一下:debug的时候它说:

把你的代码发一下

_2_ 发表于 2019-11-17 19:17:05

bin554385863 发表于 2019-11-17 17:52
把你的代码发一下

就照着你的复制了呀

bin554385863 发表于 2019-11-17 19:26:07

本帖最后由 bin554385863 于 2019-11-17 19:27 编辑

_2_ 发表于 2019-11-17 19:17
就照着你的复制了呀

{:10_266:}{:10_266:}{:10_266:}
兄弟,那玩意,环境不一样,配置出来的也不一样啊
别抄我的.
装好插件.
以前的设置文件全部删掉.
随便运行一个源代码.c.
然后在顶部选择G++.
然后关闭重启
---------------------------
把你的出问题的代码发一下看看

_2_ 发表于 2019-11-17 19:33:46

bin554385863 发表于 2019-11-17 19:26
兄弟,那玩意,环境不一样,配置出来的也不一样啊
别抄我的.
装好插件 ...

行吧,我自己好好琢磨一下

bin554385863 发表于 2019-11-17 19:53:34

本帖最后由 bin554385863 于 2019-11-17 20:01 编辑

_2_ 发表于 2019-11-17 19:33
行吧,我自己好好琢磨一下

launch.json
{
    // 使用 IntelliSense 了解相关属性。
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
      {
            "name": "g++.exe build and debug active file",
            "type": "cppdbg",
            "request": "launch",
            "program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
            "args": [],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}",
            "environment": [],
            "externalConsole": false,//如果为true,调试的时候会打开命令行窗口
            "MIMode": "gdb",
            "miDebuggerPath": "D:\\MinGW\\bin\\gdb.exe",//****************************文件GDB的路径
            "setupCommands": [
                {
                  "description": "为 gdb 启用整齐打印",
                  "text": "-enable-pretty-printing",
                  "ignoreFailures": true
                }
            ],
            "preLaunchTask": "g++.exe build active file"
      }
    ]
}
task.json
{
    "tasks": [
      {
            "type": "shell",
            "label": "g++.exe build active file",
            "command": "D:\\MinGW\\bin\\g++.exe",//******************************文件G++的路径
            "args": [
                "-g",
                "${file}",
                "-o",
                "${fileDirname}\\${fileBasenameNoExtension}.exe"
            ],
            "options": {
                "cwd": "D:\\MinGW\\bin"//******************************bin文件夹的路径
            }
      }
    ],
    "version": "2.0.0"
}
你把MinGW下面的
bin文件夹,
include文件夹
还有lib文件夹的路径添加到系统环境变量Path里面,一定是系统环境变量.然后把我上面发的带*号注释部分修改成你的文件所在的路径.然后放到.vscode文件夹里面.
页: 1 [2]
查看完整版本: 什么鬼?!