From 2c06913abd3ca5061d312060d50f0a3b36cf3b6f Mon Sep 17 00:00:00 2001 From: Jacques Supcik Date: Fri, 27 Feb 2026 12:20:03 +0000 Subject: [PATCH] Update debugger server address in launch and tasks configurations --- .../backtrace/.vscode/launch.json | 39 ++++++------ .../backtrace/.vscode/tasks.json | 15 ++--- .../core_dumps/.vscode/launch.json | 62 +++++++++---------- .../core_dumps/.vscode/tasks.json | 15 ++--- src/01_environment/daemon/.vscode/launch.json | 39 ++++++------ src/01_environment/daemon/.vscode/tasks.json | 15 ++--- src/01_environment/dot-vscode/launch.json | 39 ++++++------ .../dot-vscode/launch.json_presque | 4 +- src/01_environment/dot-vscode/tasks.json | 15 ++--- .../fibonacci/.vscode/launch.json | 39 ++++++------ .../fibonacci/.vscode/tasks.json | 15 ++--- .../memory_leaks/.vscode/launch.json | 39 ++++++------ .../memory_leaks/.vscode/tasks.json | 15 ++--- .../process/.vscode/launch.json | 39 ++++++------ src/01_environment/process/.vscode/tasks.json | 15 ++--- .../system_calls/.vscode/launch.json | 39 ++++++------ .../system_calls/.vscode/tasks.json | 15 ++--- .../tracing/.vscode/launch.json | 39 ++++++------ src/01_environment/tracing/.vscode/tasks.json | 15 ++--- 19 files changed, 257 insertions(+), 256 deletions(-) diff --git a/src/01_environment/backtrace/.vscode/launch.json b/src/01_environment/backtrace/.vscode/launch.json index 56a80dd..09631e2 100644 --- a/src/01_environment/backtrace/.vscode/launch.json +++ b/src/01_environment/backtrace/.vscode/launch.json @@ -1,21 +1,20 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - - { - "name": "(gdb) Launch", - "type": "cppdbg", - "request": "launch", - "program": "${workspaceFolder}/app", - "stopAtEntry": true, - "cwd": "${workspaceFolder}", - "externalConsole": false, - "MIMode": "gdb", - "miDebuggerServerAddress": "192.168.0.14:1234", - "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb" - } - ] -} + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "(gdb) Launch", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/app", + "stopAtEntry": true, + "cwd": "${workspaceFolder}", + "externalConsole": false, + "MIMode": "gdb", + "miDebuggerServerAddress": "192.168.53.14:1234", + "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb" + } + ] +} \ No newline at end of file diff --git a/src/01_environment/backtrace/.vscode/tasks.json b/src/01_environment/backtrace/.vscode/tasks.json index 75f4b5a..f8ba65d 100644 --- a/src/01_environment/backtrace/.vscode/tasks.json +++ b/src/01_environment/backtrace/.vscode/tasks.json @@ -3,12 +3,13 @@ // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ - { - "label": "gdbserver", - "type": "shell", - "command": [ - "ssh -t root@192.168.0.14 '/usr/bin/gdbserver :1234", - "${workspaceFolder}/app'"] - } + { + "label": "gdbserver", + "type": "shell", + "command": [ + "ssh -t root@192.168.53.14 '/usr/bin/gdbserver :1234", + "${workspaceFolder}/app'" + ] + } ] } \ No newline at end of file diff --git a/src/01_environment/core_dumps/.vscode/launch.json b/src/01_environment/core_dumps/.vscode/launch.json index 8d74da1..5ff897b 100644 --- a/src/01_environment/core_dumps/.vscode/launch.json +++ b/src/01_environment/core_dumps/.vscode/launch.json @@ -1,32 +1,32 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "(gdb) Launch", - "type": "cppdbg", - "request": "launch", - "program": "${workspaceFolder}/app", - "stopAtEntry": true, - "cwd": "${workspaceFolder}", - "externalConsole": false, - "MIMode": "gdb", - "miDebuggerServerAddress": "192.168.0.14:1234", - "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb" - }, - { - "name": "(gdb) debug Core Dumped", - "type": "cppdbg", - "request": "launch", - "program": "${workspaceFolder}/app", - "stopAtEntry": true, - "cwd": "${workspaceFolder}", - "externalConsole": false, - "MIMode": "gdb", - "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb", - "coreDumpPath": "${workspaceFolder}/core" - } - ] -} + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "(gdb) Launch", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/app", + "stopAtEntry": true, + "cwd": "${workspaceFolder}", + "externalConsole": false, + "MIMode": "gdb", + "miDebuggerServerAddress": "192.168.53.14:1234", + "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb" + }, + { + "name": "(gdb) debug Core Dumped", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/app", + "stopAtEntry": true, + "cwd": "${workspaceFolder}", + "externalConsole": false, + "MIMode": "gdb", + "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb", + "coreDumpPath": "${workspaceFolder}/core" + } + ] +} \ No newline at end of file diff --git a/src/01_environment/core_dumps/.vscode/tasks.json b/src/01_environment/core_dumps/.vscode/tasks.json index 75f4b5a..f8ba65d 100644 --- a/src/01_environment/core_dumps/.vscode/tasks.json +++ b/src/01_environment/core_dumps/.vscode/tasks.json @@ -3,12 +3,13 @@ // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ - { - "label": "gdbserver", - "type": "shell", - "command": [ - "ssh -t root@192.168.0.14 '/usr/bin/gdbserver :1234", - "${workspaceFolder}/app'"] - } + { + "label": "gdbserver", + "type": "shell", + "command": [ + "ssh -t root@192.168.53.14 '/usr/bin/gdbserver :1234", + "${workspaceFolder}/app'" + ] + } ] } \ No newline at end of file diff --git a/src/01_environment/daemon/.vscode/launch.json b/src/01_environment/daemon/.vscode/launch.json index 56a80dd..09631e2 100644 --- a/src/01_environment/daemon/.vscode/launch.json +++ b/src/01_environment/daemon/.vscode/launch.json @@ -1,21 +1,20 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - - { - "name": "(gdb) Launch", - "type": "cppdbg", - "request": "launch", - "program": "${workspaceFolder}/app", - "stopAtEntry": true, - "cwd": "${workspaceFolder}", - "externalConsole": false, - "MIMode": "gdb", - "miDebuggerServerAddress": "192.168.0.14:1234", - "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb" - } - ] -} + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "(gdb) Launch", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/app", + "stopAtEntry": true, + "cwd": "${workspaceFolder}", + "externalConsole": false, + "MIMode": "gdb", + "miDebuggerServerAddress": "192.168.53.14:1234", + "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb" + } + ] +} \ No newline at end of file diff --git a/src/01_environment/daemon/.vscode/tasks.json b/src/01_environment/daemon/.vscode/tasks.json index 75f4b5a..f8ba65d 100644 --- a/src/01_environment/daemon/.vscode/tasks.json +++ b/src/01_environment/daemon/.vscode/tasks.json @@ -3,12 +3,13 @@ // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ - { - "label": "gdbserver", - "type": "shell", - "command": [ - "ssh -t root@192.168.0.14 '/usr/bin/gdbserver :1234", - "${workspaceFolder}/app'"] - } + { + "label": "gdbserver", + "type": "shell", + "command": [ + "ssh -t root@192.168.53.14 '/usr/bin/gdbserver :1234", + "${workspaceFolder}/app'" + ] + } ] } \ No newline at end of file diff --git a/src/01_environment/dot-vscode/launch.json b/src/01_environment/dot-vscode/launch.json index 56a80dd..09631e2 100644 --- a/src/01_environment/dot-vscode/launch.json +++ b/src/01_environment/dot-vscode/launch.json @@ -1,21 +1,20 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - - { - "name": "(gdb) Launch", - "type": "cppdbg", - "request": "launch", - "program": "${workspaceFolder}/app", - "stopAtEntry": true, - "cwd": "${workspaceFolder}", - "externalConsole": false, - "MIMode": "gdb", - "miDebuggerServerAddress": "192.168.0.14:1234", - "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb" - } - ] -} + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "(gdb) Launch", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/app", + "stopAtEntry": true, + "cwd": "${workspaceFolder}", + "externalConsole": false, + "MIMode": "gdb", + "miDebuggerServerAddress": "192.168.53.14:1234", + "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb" + } + ] +} \ No newline at end of file diff --git a/src/01_environment/dot-vscode/launch.json_presque b/src/01_environment/dot-vscode/launch.json_presque index 422d731..b8e9124 100644 --- a/src/01_environment/dot-vscode/launch.json_presque +++ b/src/01_environment/dot-vscode/launch.json_presque @@ -24,13 +24,13 @@ "ignoreFailures": true } ], - // "miDebuggerServerAddress": "192.168.0.14:1234", + // "miDebuggerServerAddress": "192.168.53.14:1234", // "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb", "pipeTransport": { // "pipeCwd": "/usr/bin", "pipeProgram": "/usr/bin/ssh", "pipeArgs": [ - "root@192.168.0.14" + "root@192.168.53.14" ], "debuggerPath": "/usr/bin/gdb" // "debuggerPath": "stdbuf -i0 -o0 -e0 /usr/bin/gdb" diff --git a/src/01_environment/dot-vscode/tasks.json b/src/01_environment/dot-vscode/tasks.json index 75f4b5a..f8ba65d 100644 --- a/src/01_environment/dot-vscode/tasks.json +++ b/src/01_environment/dot-vscode/tasks.json @@ -3,12 +3,13 @@ // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ - { - "label": "gdbserver", - "type": "shell", - "command": [ - "ssh -t root@192.168.0.14 '/usr/bin/gdbserver :1234", - "${workspaceFolder}/app'"] - } + { + "label": "gdbserver", + "type": "shell", + "command": [ + "ssh -t root@192.168.53.14 '/usr/bin/gdbserver :1234", + "${workspaceFolder}/app'" + ] + } ] } \ No newline at end of file diff --git a/src/01_environment/fibonacci/.vscode/launch.json b/src/01_environment/fibonacci/.vscode/launch.json index 56a80dd..09631e2 100644 --- a/src/01_environment/fibonacci/.vscode/launch.json +++ b/src/01_environment/fibonacci/.vscode/launch.json @@ -1,21 +1,20 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - - { - "name": "(gdb) Launch", - "type": "cppdbg", - "request": "launch", - "program": "${workspaceFolder}/app", - "stopAtEntry": true, - "cwd": "${workspaceFolder}", - "externalConsole": false, - "MIMode": "gdb", - "miDebuggerServerAddress": "192.168.0.14:1234", - "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb" - } - ] -} + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "(gdb) Launch", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/app", + "stopAtEntry": true, + "cwd": "${workspaceFolder}", + "externalConsole": false, + "MIMode": "gdb", + "miDebuggerServerAddress": "192.168.53.14:1234", + "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb" + } + ] +} \ No newline at end of file diff --git a/src/01_environment/fibonacci/.vscode/tasks.json b/src/01_environment/fibonacci/.vscode/tasks.json index 91dd9de..e60f030 100644 --- a/src/01_environment/fibonacci/.vscode/tasks.json +++ b/src/01_environment/fibonacci/.vscode/tasks.json @@ -3,12 +3,13 @@ // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ - { - "label": "gdbserver", - "type": "shell", - "command": [ - "ssh -t root@192.168.0.14 '/usr/bin/gdbserver :1234", - "${workspaceFolder}/app 2'"] - } + { + "label": "gdbserver", + "type": "shell", + "command": [ + "ssh -t root@192.168.53.14 '/usr/bin/gdbserver :1234", + "${workspaceFolder}/app 2'" + ] + } ] } \ No newline at end of file diff --git a/src/01_environment/memory_leaks/.vscode/launch.json b/src/01_environment/memory_leaks/.vscode/launch.json index 56a80dd..09631e2 100644 --- a/src/01_environment/memory_leaks/.vscode/launch.json +++ b/src/01_environment/memory_leaks/.vscode/launch.json @@ -1,21 +1,20 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - - { - "name": "(gdb) Launch", - "type": "cppdbg", - "request": "launch", - "program": "${workspaceFolder}/app", - "stopAtEntry": true, - "cwd": "${workspaceFolder}", - "externalConsole": false, - "MIMode": "gdb", - "miDebuggerServerAddress": "192.168.0.14:1234", - "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb" - } - ] -} + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "(gdb) Launch", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/app", + "stopAtEntry": true, + "cwd": "${workspaceFolder}", + "externalConsole": false, + "MIMode": "gdb", + "miDebuggerServerAddress": "192.168.53.14:1234", + "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb" + } + ] +} \ No newline at end of file diff --git a/src/01_environment/memory_leaks/.vscode/tasks.json b/src/01_environment/memory_leaks/.vscode/tasks.json index 75f4b5a..f8ba65d 100644 --- a/src/01_environment/memory_leaks/.vscode/tasks.json +++ b/src/01_environment/memory_leaks/.vscode/tasks.json @@ -3,12 +3,13 @@ // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ - { - "label": "gdbserver", - "type": "shell", - "command": [ - "ssh -t root@192.168.0.14 '/usr/bin/gdbserver :1234", - "${workspaceFolder}/app'"] - } + { + "label": "gdbserver", + "type": "shell", + "command": [ + "ssh -t root@192.168.53.14 '/usr/bin/gdbserver :1234", + "${workspaceFolder}/app'" + ] + } ] } \ No newline at end of file diff --git a/src/01_environment/process/.vscode/launch.json b/src/01_environment/process/.vscode/launch.json index 56a80dd..09631e2 100644 --- a/src/01_environment/process/.vscode/launch.json +++ b/src/01_environment/process/.vscode/launch.json @@ -1,21 +1,20 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - - { - "name": "(gdb) Launch", - "type": "cppdbg", - "request": "launch", - "program": "${workspaceFolder}/app", - "stopAtEntry": true, - "cwd": "${workspaceFolder}", - "externalConsole": false, - "MIMode": "gdb", - "miDebuggerServerAddress": "192.168.0.14:1234", - "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb" - } - ] -} + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "(gdb) Launch", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/app", + "stopAtEntry": true, + "cwd": "${workspaceFolder}", + "externalConsole": false, + "MIMode": "gdb", + "miDebuggerServerAddress": "192.168.53.14:1234", + "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb" + } + ] +} \ No newline at end of file diff --git a/src/01_environment/process/.vscode/tasks.json b/src/01_environment/process/.vscode/tasks.json index 75f4b5a..f8ba65d 100644 --- a/src/01_environment/process/.vscode/tasks.json +++ b/src/01_environment/process/.vscode/tasks.json @@ -3,12 +3,13 @@ // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ - { - "label": "gdbserver", - "type": "shell", - "command": [ - "ssh -t root@192.168.0.14 '/usr/bin/gdbserver :1234", - "${workspaceFolder}/app'"] - } + { + "label": "gdbserver", + "type": "shell", + "command": [ + "ssh -t root@192.168.53.14 '/usr/bin/gdbserver :1234", + "${workspaceFolder}/app'" + ] + } ] } \ No newline at end of file diff --git a/src/01_environment/system_calls/.vscode/launch.json b/src/01_environment/system_calls/.vscode/launch.json index 56a80dd..09631e2 100644 --- a/src/01_environment/system_calls/.vscode/launch.json +++ b/src/01_environment/system_calls/.vscode/launch.json @@ -1,21 +1,20 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - - { - "name": "(gdb) Launch", - "type": "cppdbg", - "request": "launch", - "program": "${workspaceFolder}/app", - "stopAtEntry": true, - "cwd": "${workspaceFolder}", - "externalConsole": false, - "MIMode": "gdb", - "miDebuggerServerAddress": "192.168.0.14:1234", - "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb" - } - ] -} + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "(gdb) Launch", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/app", + "stopAtEntry": true, + "cwd": "${workspaceFolder}", + "externalConsole": false, + "MIMode": "gdb", + "miDebuggerServerAddress": "192.168.53.14:1234", + "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb" + } + ] +} \ No newline at end of file diff --git a/src/01_environment/system_calls/.vscode/tasks.json b/src/01_environment/system_calls/.vscode/tasks.json index 75f4b5a..f8ba65d 100644 --- a/src/01_environment/system_calls/.vscode/tasks.json +++ b/src/01_environment/system_calls/.vscode/tasks.json @@ -3,12 +3,13 @@ // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ - { - "label": "gdbserver", - "type": "shell", - "command": [ - "ssh -t root@192.168.0.14 '/usr/bin/gdbserver :1234", - "${workspaceFolder}/app'"] - } + { + "label": "gdbserver", + "type": "shell", + "command": [ + "ssh -t root@192.168.53.14 '/usr/bin/gdbserver :1234", + "${workspaceFolder}/app'" + ] + } ] } \ No newline at end of file diff --git a/src/01_environment/tracing/.vscode/launch.json b/src/01_environment/tracing/.vscode/launch.json index 56a80dd..09631e2 100644 --- a/src/01_environment/tracing/.vscode/launch.json +++ b/src/01_environment/tracing/.vscode/launch.json @@ -1,21 +1,20 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - - { - "name": "(gdb) Launch", - "type": "cppdbg", - "request": "launch", - "program": "${workspaceFolder}/app", - "stopAtEntry": true, - "cwd": "${workspaceFolder}", - "externalConsole": false, - "MIMode": "gdb", - "miDebuggerServerAddress": "192.168.0.14:1234", - "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb" - } - ] -} + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "(gdb) Launch", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/app", + "stopAtEntry": true, + "cwd": "${workspaceFolder}", + "externalConsole": false, + "MIMode": "gdb", + "miDebuggerServerAddress": "192.168.53.14:1234", + "miDebuggerPath": "/buildroot/output/host/bin/aarch64-linux-gdb" + } + ] +} \ No newline at end of file diff --git a/src/01_environment/tracing/.vscode/tasks.json b/src/01_environment/tracing/.vscode/tasks.json index 75f4b5a..f8ba65d 100644 --- a/src/01_environment/tracing/.vscode/tasks.json +++ b/src/01_environment/tracing/.vscode/tasks.json @@ -3,12 +3,13 @@ // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ - { - "label": "gdbserver", - "type": "shell", - "command": [ - "ssh -t root@192.168.0.14 '/usr/bin/gdbserver :1234", - "${workspaceFolder}/app'"] - } + { + "label": "gdbserver", + "type": "shell", + "command": [ + "ssh -t root@192.168.53.14 '/usr/bin/gdbserver :1234", + "${workspaceFolder}/app'" + ] + } ] } \ No newline at end of file