Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyBanks committed Jul 4, 2019
1 parent 3fbb13b commit 6d9c8f4
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .vscode/launch.json
Expand Up @@ -5,7 +5,7 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug math-lexer",
"name": "Debug math-lexer with LLVM",
"cargo": {
"args": [
"build",
Expand All @@ -18,6 +18,14 @@
},
"args": ["(test)"]
},
{
"type": "gdb",
"request": "launch",
"name": "Debug math-lexer with GDB",
"target": "./target/debug/math-lexer",
"cwd": "${workspaceRoot}",
"gdbpath": "rust-gdb"
},
{
"name": "(Windows) Launch",
"type": "cppvsdbg",
Expand All @@ -31,4 +39,3 @@
}
]
}
}

0 comments on commit 6d9c8f4

Please sign in to comment.