Setup debug for spinning cube

This commit is contained in:
2025-08-05 00:06:58 -04:00
parent d64eaf8e2f
commit 8f71a7bf9c
6 changed files with 155 additions and 0 deletions
@@ -0,0 +1,40 @@
{
"configurations": [
{
"name": "Win32",
"compilerPath": "${env:AppData}\\mips\\mips\\bin\\mipsel-none-elf-gcc.exe",
"cStandard": "c17",
"cppStandard": "c++20",
"defines": [
"__STDC_HOSTED__ = 0"
],
"includePath": [
"${env:AppData}/mips/mips/include",
"${workspaceFolder}/",
"${workspaceFolder}/third_party/nugget",
"${workspaceFolder}/third_party/psyq-iwyu/include"
],
"intelliSenseMode": "gcc-x86"
},
{
"name": "linux",
"compilerPath": "mipsel-linux-gnu-gcc",
"cStandard": "c17",
"cppStandard": "c++20",
"defines": [
"__STDC_HOSTED__ = 0"
],
"includePath": [
"/usr/mipsel-linux-gnu/include",
"/usr/local/mipsel-linux-gnu/include",
"/usr/mipsel-none-elf/include",
"/usr/local/mipsel-none-elf/include",
"${workspaceFolder}/",
"${workspaceFolder}/third_party/nugget",
"${workspaceFolder}/third_party/psyq-iwyu/include"
],
"intelliSenseMode": "gcc-x86"
}
],
"version": 4
}