Skip to content

Commit 8d21df0

Browse files
committed
minor fixes
1 parent b472237 commit 8d21df0

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
bin/
22
*.o
33
binaries/
4-
*.sh
4+
*.sh
5+
*.bat

.vscode/launch.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,30 @@
2323
"ignoreFailures": true
2424
}
2525
]
26+
},
27+
{
28+
"name": "Debug Windows",
29+
"type": "cppdbg",
30+
"request": "launch",
31+
"program": "${workspaceFolder}/bin/debug/debug.exe",
32+
"args": [],
33+
"stopAtEntry": false,
34+
"cwd": "${workspaceFolder}",
35+
"environment": [],
36+
"externalConsole": false,
37+
"MIMode": "gdb",
38+
"setupCommands": [
39+
{
40+
"description": "Enable pretty-printing for gdb",
41+
"text": "-enable-pretty-printing",
42+
"ignoreFailures": true
43+
},
44+
{
45+
"description": "Set Disassembly Flavor to Intel",
46+
"text": "-gdb-set disassembly-flavor intel",
47+
"ignoreFailures": true
48+
}
49+
]
2650
}
2751
]
2852
}

0 commit comments

Comments
 (0)