19 lines
473 B
Markdown
19 lines
473 B
Markdown
|
|
# Toolchain
|
|
To use the same toolchain as the CI in vscode
|
|
place the file 'cmake-kits.json' into your '.vscode' directory.
|
|
Then select the 'Spacegame LLVM Kit' in the cmake-tools extension.
|
|
Restarting vscode may be necessary.
|
|
|
|
# Debugging
|
|
To enable debugging add this to your .vscode/settings.json
|
|
```
|
|
"cmake.debugConfig": {
|
|
"MIMode": "gdb",
|
|
"miDebuggerPath": "/usr/bin/gdb"
|
|
}
|
|
```
|
|
|
|
# Usefull links
|
|
- [LLVM Debian/Ubuntu packages](https://apt.llvm.org/)
|