01/10/2018, 15:43

Vscode cannot open source file "bitsc++config.h"

mày mò cách compile c++ trên vscode, em bị lỗi này, trên video hướng dẫn thì sau khi họ tạo c_cpp_properties.json thì vscode đã định được iostream, nhưng em làm thì nó vẫn bị gạch, lại còn như sau :

còn đây là file task.json :

{
    // 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": [
                "-std=c++11", "-std=c++14", 
                "-Wall", 
                "-static-libgcc", "-static-libstdc++", 
                "-c" ,
                "${file}",
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}

launch.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",
            "type": "cppdbg",
            "request": "launch",
            "program": "enter program name, for example ${workspaceFolder}/a.exe",
            "args": [],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}",
            "environment": [],
            "externalConsole": true,
            "MIMode": "gdb",
            "miDebuggerPath": /*"/path/to/gdb",*/ "E:\mingw\mingw64\bin\gdb.exe",
            "preLaunchTask": "echo",
            "setupCommands": [
                {
                    "description": "Enable pretty-printing for gdb",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                }
            ]
        }
    ]
}

thật sự thì lỗi này không ảnh hưởng j mấy nên không sửa cũng không sao

Bài liên quan
0