This commit is contained in:
mii
2021-11-25 08:07:47 +09:00
parent 5c2964e95a
commit 06a254df2f
8 changed files with 154 additions and 0 deletions

45
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,45 @@
{
// IntelliSense を使用して利用可能な属性を学べます。
// 既存の属性の説明をホバーして表示します。
// 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'elf-parser'",
"cargo": {
"args": [
"build",
"--bin=elf-parser",
"--package=elf-parser"
],
"filter": {
"name": "elf-parser",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'elf-parser'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=elf-parser",
"--package=elf-parser"
],
"filter": {
"name": "elf-parser",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}