当前位置:   article > 正文

VS Code C语言开发环境配置第四步三个文件c_cpp_propertise.json、launch.json、tasks.json的内容_vsc中tesk.json使用什么语言

vsc中tesk.json使用什么语言

复制粘贴到文件里,需要修改的地方都标出来了

特别注意的是,如果用的是C++,那么三个文件中的gcc要改成g++

1.c_cpp_propertise.json
在这个代码中,我们需要把地址改成自己的mingw 64 bin的地址
如果使用c++,把gcc改成g++,如"D:/VSCode/mingw64/bin/…/lib/g++/x86_64-w64-mingw32/8.1.0/include/c++"

{   
    "configurations": [       
     {          
         "name": "Win32",       
         "includePath": [
         "${workspaceRoot}",               
         "D:/VSCode/mingw64/include/**",               
         "D:/VSCode/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++", 
         "D:/VSCode/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32",
         "D:/VSCode/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward",
         "D:/VSCode/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include",
         "D:/VSCode/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed",
         "D:/VSCode/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/include"
    ],      
    "defines": [
        "_DEBUG",               
        "UNICODE",
        "__GNUC__=6",               
        "__cdecl=__attribute__((__cdecl__))"            
        ],           
    "intelliSenseMode": "msvc-x64",
    "browse": {              
        "limitSymbolsToIncludedHeaders": true,
        "databaseFilename": "",
        "path": [                   
            "${workspaceRoot}",                   
            "D:/VSCode/mingw64/include/**",                   
            "D:/VSCode/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++",
            "D:/VSCode/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32",
            "D:/VSCode/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward",
            "D:/VSCode/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include",
            "D:/VSCode/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed",
            "D:/VSCode/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/include"
           ]        
        }       
     }   
  ],   
   "version": 4
}
   
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40

在这里插入图片描述
在这里插入图片描述

2.launch.json

在这个代码中,需要改miDebuggerPath为自己的路径

{  
    "version": "0.2.0",
    "configurations": [     
        {           
            "name": "(gdb) Launch", // 配置名称,将会在启动配置的下拉菜单中显示            
            "type":"cppdbg", // 配置类型,这里只能为cppdbg           
            "request": "launch", //请求配置类型,可以为launch(启动)或attach(附加)          
            "program":"${workspaceFolder}/${fileBasenameNoExtension}.exe", // 将要进行调试的程序的路径
            "args": [], // 程序调试时传递给程序的命令行参数,一般设为空即可            
            "stopAtEntry":false, // 设为true时程序将暂停在程序入口处,一般设置为false            
            "cwd":"${workspaceFolder}", // 调试程序时的工作目录,一般为${workspaceRoot}即代码所在目录workspaceRoot已被弃用,现改为workspaceFolder            
            "environment": [],  
            "externalConsole": true, // 调试时是否显示控制台窗口,一般设置为true显示控制台           
            "MIMode": "gdb",            
            "miDebuggerPath":"D:/VSCode/mingw64/bin/gdb.exe", // miDebugger的路径,注意这里要与MinGw的路径对应  
            "preLaunchTask": "gcc", // 调试会话开始前执行的任务,一般为编译程序,c++为g++, c为gcc      
            "setupCommands": [     
                {                   
                    "description":     "Enable pretty-printing for gdb",                   
                    "text": "-enable-pretty-printing",                   
                    "ignoreFailures": false  
                  }        
               ]     
            }  
         ]
      }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26

在这里插入图片描述
3.tasks.json

如果使用c++,要把command的gcc改为g++

{   
     "version": "2.0.0",   
     "command": "gcc", // 注意对应  
     "args":["-g","${file}","-o","${fileBasenameNoExtension}.exe"],    // 编译命令参数
     "problemMatcher": {       
         "owner": "cpp",
         "fileLocation":["relative","${workspaceFolder}"],        
         "pattern": {
         "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
         "file": 1,         
         "line": 2,         
         "column": 3,           
         "severity": 4,            
         "message": 5       
         }  
      }
   }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/680625
推荐阅读
相关标签
  

闽ICP备14008679号