mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-14 08:47:45 -04:00
Add cygwin option for compilation (#1230)
Add Cygwin option for compilation
This commit is contained in:
parent
059165fbf1
commit
3b34f8028d
2 changed files with 22 additions and 1 deletions
13
FreeRTOS/Demo/Posix_GCC/.vscode/launch.json
vendored
13
FreeRTOS/Demo/Posix_GCC/.vscode/launch.json
vendored
|
@ -30,6 +30,19 @@
|
||||||
"MIMode": "gdb",
|
"MIMode": "gdb",
|
||||||
"preLaunchTask": "${defaultBuildTask}"
|
"preLaunchTask": "${defaultBuildTask}"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Launch GDB Cygwin",
|
||||||
|
"type": "cppdbg",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${workspaceFolder}/build/posix_demo",
|
||||||
|
"args": [],
|
||||||
|
"stopAtEntry": true,
|
||||||
|
"cwd": "${workspaceFolder}",
|
||||||
|
"environment": [],
|
||||||
|
"externalConsole": true,
|
||||||
|
"MIMode": "gdb",
|
||||||
|
"preLaunchTask": "${defaultBuildTask}"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Launch GDB MSYS2",
|
"name": "Launch GDB MSYS2",
|
||||||
"type": "cppdbg",
|
"type": "cppdbg",
|
||||||
|
|
|
@ -10,6 +10,14 @@
|
||||||
"MSYSTEM": "MSYS",
|
"MSYSTEM": "MSYS",
|
||||||
"CHERE_INVOKING": "1",
|
"CHERE_INVOKING": "1",
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"Cygwin": {
|
||||||
|
"path": "C:\\cygwin64\\bin\\bash.exe",
|
||||||
|
"args": ["--login", "-i"],
|
||||||
|
"env": {
|
||||||
|
"MSYSTEM": "Cygwin",
|
||||||
|
"CHERE_INVOKING": "1",
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"terminal.integrated.defaultProfile.windows": "MSYS2",
|
"terminal.integrated.defaultProfile.windows": "MSYS2",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue