mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 00:14:32 -08:00
[misc] Get VSCode running / debugging working
I spent some time getting VSCode debugging working. Now I can use VSCode on windows to work on jsix in Linux (WSL) and launch and debug it within QEMU. So many layers but it works pretty nicely!
This commit is contained in:
17
.vscode/c_cpp_properties.json
vendored
Normal file
17
.vscode/c_cpp_properties.json
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Linux",
|
||||
"includePath": [
|
||||
"${workspaceFolder}/**"
|
||||
],
|
||||
"defines": [],
|
||||
"compilerPath": "/usr/bin/clang",
|
||||
"cStandard": "c17",
|
||||
"cppStandard": "c++14",
|
||||
"intelliSenseMode": "linux-clang-x64",
|
||||
"compileCommands": "${workspaceFolder}/compile_commands.json"
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
}
|
||||
Reference in New Issue
Block a user