mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-24 01:08:47 +00:00
feat(debug): use C++14
This commit is contained in:
parent
b8eb3ce10a
commit
db581675ea
23
.vscode/tasks.json
vendored
23
.vscode/tasks.json
vendored
@ -7,7 +7,7 @@
|
|||||||
"windows": {
|
"windows": {
|
||||||
"command": "g++",
|
"command": "g++",
|
||||||
"args": [
|
"args": [
|
||||||
"--std=c++11",
|
"-std=c++14",
|
||||||
"-g",
|
"-g",
|
||||||
"\"${file}\"",
|
"\"${file}\"",
|
||||||
"-o",
|
"-o",
|
||||||
@ -17,7 +17,7 @@
|
|||||||
"linux": {
|
"linux": {
|
||||||
"command": "/usr/bin/g++",
|
"command": "/usr/bin/g++",
|
||||||
"args": [
|
"args": [
|
||||||
"--std=c++11",
|
"-std=c++14",
|
||||||
"-g",
|
"-g",
|
||||||
"\"${file}\"",
|
"\"${file}\"",
|
||||||
"-o",
|
"-o",
|
||||||
@ -50,24 +50,5 @@
|
|||||||
"panel": "shared"
|
"panel": "shared"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// ,
|
|
||||||
// {
|
|
||||||
// "type": "shell",
|
|
||||||
// "label": "C/C++: g++ build active file",
|
|
||||||
// "command": "/usr/bin/g++",
|
|
||||||
// "args": [
|
|
||||||
// "-g",
|
|
||||||
// "${file}",
|
|
||||||
// "-o",
|
|
||||||
// "${fileDirname}/${fileBasenameNoExtension}"
|
|
||||||
// ],
|
|
||||||
// "options": {
|
|
||||||
// "cwd": "${workspaceFolder}"
|
|
||||||
// },
|
|
||||||
// "problemMatcher": [
|
|
||||||
// "$gcc"
|
|
||||||
// ],
|
|
||||||
// "group": "build"
|
|
||||||
// }
|
|
||||||
]
|
]
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user