码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu Visual code安装与使用

时间:2019-09-29 14:31:29      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:ram   extern   build   目录   launch   main   soft   软件   config   

1.直接启动软件中心,输入visual studio code,点击install即可,千万千万不要去装逼搞什么linux指令安装,死都不知道怎么死的

2.Visual code是以文件夹为工程目录的,记得新建一个文件夹例如CPlus

3.写一个简单的cpp文件,配置launch.json以及task.json

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "(gdb) Launch",
            "type": "cppdbg",
            "request": "launch",
            "program": "${workspaceRoot}/a.out",
            "args": [],
            "stopAtEntry": false,
            "cwd": "${workspaceRoot}",
            "environment": [],
            "externalConsole": false,
            "MIMode": "gdb",
            "setupCommands": [
                {
                    "description": "Enable pretty-printing for gdb",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                }
            ]
        }
    ]
}

  task.json,这个配了好久,好讨厌。注意那个main.cpp需要和你run的文件同名

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "echo",
            "type": "shell",
            "command": "g++",
            "args": [
                "-g","main.cpp"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}

  

Ubuntu Visual code安装与使用

标签:ram   extern   build   目录   launch   main   soft   软件   config   

原文地址:https://www.cnblogs.com/yiyi20120822/p/11607630.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!