We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c98f433 commit 7074103Copy full SHA for 7074103
.vscode/launch.json
@@ -8,7 +8,7 @@
8
"name": "(gdb) Launch",
9
"type": "cppdbg",
10
"request": "launch",
11
- "program": "${workspaceRoot}/a.out",
+ "program": "${fileDirname}/a.out",
12
"args": [],
13
"stopAtEntry": false,
14
"cwd": "${workspaceFolder}",
.vscode/settings.json
@@ -1,3 +1,6 @@
1
{
2
- "editor.formatOnSave": true, // 保存のたびにコードを整形する
+ "editor.formatOnSave": true,
3
+ "files.associations": {
4
+ "iostream": "cpp"
5
+ }, // 保存のたびにコードを整形する
6
}
.vscode/tasks.json
@@ -21,7 +21,9 @@
21
"-std=gnu++17",
22
"-march=native",
23
"-mtune=native",
24
- "${relativeFile}"
+ "${file}",
25
+ "-o",
26
+ "${fileDirname}/a.out",
27
],
28
"group": {
29
"kind": "build",
a.out
416 KB
0 commit comments