mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-05-28 15:34:26 +00:00
Update vscode configs
This commit is contained in:
parent
d949a1a449
commit
ed5faa7b55
2
.vscode/c_cpp_properties.json
vendored
2
.vscode/c_cpp_properties.json
vendored
@ -15,6 +15,7 @@
|
|||||||
"GIT_COMMIT=\"0000000000000000000000000000000000000000\"",
|
"GIT_COMMIT=\"0000000000000000000000000000000000000000\"",
|
||||||
"GIT_COMMIT_SHORT=\"0000000\"",
|
"GIT_COMMIT_SHORT=\"0000000\"",
|
||||||
"a64",
|
"a64",
|
||||||
|
"a86",
|
||||||
"DEBUG=\"1\""
|
"DEBUG=\"1\""
|
||||||
],
|
],
|
||||||
"compilerPath": "${workspaceFolder}/../tools/cross/bin/amd64-elf-gcc",
|
"compilerPath": "${workspaceFolder}/../tools/cross/bin/amd64-elf-gcc",
|
||||||
@ -66,6 +67,7 @@
|
|||||||
"GIT_COMMIT=\"0000000000000000000000000000000000000000\"",
|
"GIT_COMMIT=\"0000000000000000000000000000000000000000\"",
|
||||||
"GIT_COMMIT_SHORT=\"0000000\"",
|
"GIT_COMMIT_SHORT=\"0000000\"",
|
||||||
"a32",
|
"a32",
|
||||||
|
"a86",
|
||||||
"DEBUG=\"1\""
|
"DEBUG=\"1\""
|
||||||
],
|
],
|
||||||
"compilerPath": "${workspaceFolder}/../tools/cross/bin/i386-elf-gcc",
|
"compilerPath": "${workspaceFolder}/../tools/cross/bin/i386-elf-gcc",
|
||||||
|
24
.vscode/launch.json
vendored
24
.vscode/launch.json
vendored
@ -5,15 +5,15 @@
|
|||||||
"name": "/init",
|
"name": "/init",
|
||||||
"type": "cppdbg",
|
"type": "cppdbg",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"program": "${workspaceRoot}/out/init",
|
"program": "${workspaceFolder}/out/bin/init",
|
||||||
"cwd": "${workspaceRoot}",
|
"cwd": "${workspaceFolder}",
|
||||||
"args": [],
|
"args": [],
|
||||||
"targetArchitecture": "x64",
|
"targetArchitecture": "x64",
|
||||||
"MIMode": "gdb",
|
"MIMode": "gdb",
|
||||||
"miDebuggerPath": "/usr/bin/gdb",
|
"miDebuggerPath": "/usr/bin/gdb",
|
||||||
"miDebuggerArgs": "",
|
"miDebuggerArgs": "",
|
||||||
"externalConsole": false,
|
"externalConsole": false,
|
||||||
"additionalSOLibSearchPath": "${workspaceRoot}",
|
"additionalSOLibSearchPath": "${workspaceFolder}",
|
||||||
"customLaunchSetupCommands": [
|
"customLaunchSetupCommands": [
|
||||||
{
|
{
|
||||||
"text": "target remote localhost:1234",
|
"text": "target remote localhost:1234",
|
||||||
@ -31,24 +31,28 @@
|
|||||||
"description": "Make breakpoint pending on future shared library load."
|
"description": "Make breakpoint pending on future shared library load."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"text": "file ${workspaceRoot}/out/init",
|
"text": "file ${workspaceFolder}/out/bin/init",
|
||||||
"description": "Load binary."
|
"description": "Load binary."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"text": "add-symbol-file ${workspaceFolder}/../Kernel/kernel.fsys",
|
||||||
|
"description": "Load kernel binary."
|
||||||
|
},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "/bin/doom",
|
"name": "/bin/doom",
|
||||||
"type": "cppdbg",
|
"type": "cppdbg",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"program": "${workspaceRoot}/out/bin/doom",
|
"program": "${workspaceFolder}/out/usr/bin/doom",
|
||||||
"cwd": "${workspaceRoot}",
|
"cwd": "${workspaceFolder}",
|
||||||
"args": [],
|
"args": [],
|
||||||
"targetArchitecture": "x64",
|
"targetArchitecture": "x64",
|
||||||
"MIMode": "gdb",
|
"MIMode": "gdb",
|
||||||
"miDebuggerPath": "/usr/bin/gdb",
|
"miDebuggerPath": "/usr/bin/gdb",
|
||||||
"miDebuggerArgs": "",
|
"miDebuggerArgs": "",
|
||||||
"externalConsole": false,
|
"externalConsole": false,
|
||||||
"additionalSOLibSearchPath": "${workspaceRoot}",
|
"additionalSOLibSearchPath": "${workspaceFolder}",
|
||||||
"customLaunchSetupCommands": [
|
"customLaunchSetupCommands": [
|
||||||
{
|
{
|
||||||
"text": "target remote localhost:1234",
|
"text": "target remote localhost:1234",
|
||||||
@ -66,9 +70,13 @@
|
|||||||
"description": "Make breakpoint pending on future shared library load."
|
"description": "Make breakpoint pending on future shared library load."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"text": "file ${workspaceRoot}/out/bin/doom",
|
"text": "file ${workspaceFolder}/out/usr/bin/doom",
|
||||||
"description": "Load binary."
|
"description": "Load binary."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"text": "add-symbol-file ${workspaceFolder}/../Kernel/kernel.fsys",
|
||||||
|
"description": "Load kernel binary."
|
||||||
|
},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user