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",
|
||||
"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",
|
||||
"type": "cppdbg",
|
||||
|
|
10
FreeRTOS/Demo/Posix_GCC/.vscode/settings.json
vendored
10
FreeRTOS/Demo/Posix_GCC/.vscode/settings.json
vendored
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
{
|
||||
"terminal.integrated.profiles.windows": {
|
||||
"Ubuntu (WSL)": {
|
||||
"path": "C:\\Windows\\Sysnative\\bash.exe",
|
||||
|
@ -10,6 +10,14 @@
|
|||
"MSYSTEM": "MSYS",
|
||||
"CHERE_INVOKING": "1",
|
||||
}
|
||||
},
|
||||
"Cygwin": {
|
||||
"path": "C:\\cygwin64\\bin\\bash.exe",
|
||||
"args": ["--login", "-i"],
|
||||
"env": {
|
||||
"MSYSTEM": "Cygwin",
|
||||
"CHERE_INVOKING": "1",
|
||||
}
|
||||
}
|
||||
},
|
||||
"terminal.integrated.defaultProfile.windows": "MSYS2",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue