Debian Programming with VSCode: Difference between revisions

From Variscite Wiki
(Install Yocto Toolchain: update according to Debian)
(Use TOOLCHAIN_TARGET_CROSS_PREFIX to fix trailing hypen using CROSS_COMPILE)
 
(10 intermediate revisions by the same user not shown)
Line 2: Line 2:
--> {{INIT_RELEASE_PARAM|mx8mm-debian-bullseye-5.4-2.1.x-v1.3}}<!--
--> {{INIT_RELEASE_PARAM|mx8mm-debian-bullseye-5.4-2.1.x-v1.3}}<!--
--> {{#lst:Debian_Platform_Customization|{{#var:RELEASE_PARAM}}}} <!--
--> {{#lst:Debian_Platform_Customization|{{#var:RELEASE_PARAM}}}} <!--
SOC Specific Make options
SOC Specific Make options
-->{{#vardefine:MAKE_OPTIONS_mx6|-march=armv7-a -mthumb -mfpu=neon -mfloat-abi=hard}}<!--
-->{{#vardefine:MAKE_OPTIONS_mx6|-march=armv7-a -mthumb -mfpu=neon -mfloat-abi=hard}}<!--
 
ARCH adjustment
 
--> {{#vardefine:TOOLCHAIN_TARGET_CROSS_PREFIX|{{#sub:{{#var:CROSS_COMPILE}}|0|{{#expr:{{#Len:{{#var:CROSS_COMPILE}}}}-1}}}} }}<!--
--> {{PageHeader|{{#var:HARDWARE_NAME}} - Debian Programming with Visual Studio Code}} {{DocImage|category1={{#var:HARDWARE_NAME}}|category2=Debian}}
--> {{PageHeader|{{#var:HARDWARE_NAME}} - Debian Programming with Visual Studio Code}} {{DocImage|category1={{#var:HARDWARE_NAME}}|category2=Debian}}
__toc__
__toc__


Line 21: Line 19:
Debugging with VS Code requires your preferred SSH server (openssh, dropbear, etc), and gdbserver installed on the target device.
Debugging with VS Code requires your preferred SSH server (openssh, dropbear, etc), and gdbserver installed on the target device.


The packages can be installed at runtime or compile-time, as shown below:
The packages can be installed by running the following commands on the target:
* '''Add required packages at runtime'''<br>
  # apt-get update && apt-get -y upgrade
 
Login to your target and run the commands:
 
  # apt-get update
  # apt-get -y install gdbserver openssh-server <!--
  # apt-get -y install gdbserver openssh-server <!--


-->{{Note|'''Note:''' The package '''openssh-server''' may possibly already be installed.|info}}
-->{{Note|'''Note:''' The package '''openssh-server''' may possibly already be installed.|info}}
* '''Add required packages at compile-time'''<br>
Use the variable 'G_USER_PACKAGES' in the build script to add further packages to your image
For example:
#### user rootfs packages ####
readonly G_USER_PACKAGES=" \
gdbserver \
openssh-server \
"
''File: {{#var:BUILD_FOLDER}}/var_make_debian.sh''
and build the image, according to the page {{Varlink2|Debian Build Release|{{#var:RELEASE_LINK}}}}.


 
If you want to learn how to add the packages at compile time, please refer to {{Varlink2|Adding Debian packages|{{#var:RELEASE_LINK}}}}.
Please also refer to the page {{Varlink2|Adding Debian packages|{{#var:RELEASE_LINK}}}} if you want to learn more about adding packages to a Debian image.


= Setup Host Computer Environment =
= Setup Host Computer Environment =
Line 55: Line 34:


  $ sudo apt-get -y update
  $ sudo apt-get -y update
  $ sudo apt-get -y install build-essential gdb gdb-multiarch git
  $ sudo apt-get -y install build-essential gdb gdb-multiarch git sshpass


== Install VS Code ==
== Install VS Code ==
Line 70: Line 49:


== Install Debian Toolchain ==
== Install Debian Toolchain ==
To cross-compile your application on the host following basic components are needed:


* cross compiler ({{#var:TOOLCHAIN}})
To install the toolchain, follow the {{Varlink2|Debian Toolchain installation|{{#var:RELEASE_LINK}}}} guide.
* target's rootfs (standard includes at /usr/include and libraries at /usr/lib)
<br>
The Debian build script provides both of them. Once you went through the {{Varlink2|Debian Build Release|{{#var:RELEASE_LINK}}}} guide you should be able to find:
 
* The cross compiler at {{#var:BUILD_FOLDER}}/toolchain
* And the target's rootfs at {{#var:BUILD_FOLDER}}/rootfs
 
{{Note|'''Note''': It's recommended to keep the host-side used rootfs for compiling/linking consistent with the target rootfs.|info}}


= Create, cross compile, and run a new "Hello, World!" project =
= Create, cross compile, and run a new "Hello, World!" project =
Line 142: Line 112:
  "PROGRAM":"hello.bin",
  "PROGRAM":"hello.bin",
   
   
  /* Yocto SDK Configuration */
  /* Debian SDK Configuration */
  "ARCH":"{{#var:TOOLCHAIN_TYPE}}",
  "ARCH":"{{#var:TOOLCHAIN_TARGET_CROSS_PREFIX}}",
  "OECORE_NATIVE_SYSROOT":"{{#var:TOOLCHAIN_HOST_SYSROOT_LOCATION}}",
  "TOOLCHAIN":"/home/USER/{{#var:BUILD_FOLDER_NAME}}/toolchain/{{#var:TOOLCHAIN}}",
  "SDKTARGETSYSROOT": "{{#var:TOOLCHAIN_TARGET_SYSROOT_LOCATION}}",
  "TARGETSYSROOT":"/home/USER/{{#var:BUILD_FOLDER_NAME}}/toolchain/sysroot",
   
   
  /* Yocto SDK Constants */
  /* Debian SDK Constants */
  "CC_PREFIX": "${config:VARISCITE.OECORE_NATIVE_SYSROOT}/usr/bin/${config:VARISCITE.ARCH}/${config:VARISCITE.ARCH}-",
  "CC_PREFIX": "${config:VARISCITE.TOOLCHAIN}/bin/${config:VARISCITE.ARCH}-",
  "CXX": "${config:VARISCITE.CC_PREFIX}g++ --sysroot=${config:VARISCITE.SDKTARGETSYSROOT}",
  "CXX": "${config:VARISCITE.CC_PREFIX}g++ --sysroot=${config:VARISCITE.TARGETSYSROOT}",
  "CC": "${config:VARISCITE.CC_PREFIX}gcc --sysroot=${config:VARISCITE.SDKTARGETSYSROOT}",
  "CC": "${config:VARISCITE.CC_PREFIX}gcc --sysroot=${config:VARISCITE.TARGETSYSROOT}",
  }
  }
  }
  }
Line 164: Line 134:
|'''ARCH''' || Architecture prefix for gcc, g++, gdb, etc. Align with CXX variable set by {{#var:TOOLCHAIN_LOCATION}}
|'''ARCH''' || Architecture prefix for gcc, g++, gdb, etc. Align with CXX variable set by {{#var:TOOLCHAIN_LOCATION}}
|-
|-
|'''OECORE_NATIVE_SYSROOT''' || Align with OECORE_NATIVE_SYSROOT variable set by {{#var:TOOLCHAIN_LOCATION}}
|'''TOOLCHAIN''' || Path to the cross compiler (located at {{#var:BUILD_FOLDER}}/toolchain)
|-
|-
|'''SDKTARGETSYSROOT''' || Align with SDKTARGETSYSROOT variable set by {{#var:TOOLCHAIN_LOCATION}}
|'''TARGETSYSROOT''' || Path to the sysroot (located at {{#var:BUILD_FOLDER}}/toolchain/sysroot)
|-
|-
|'''CC_PREFIX''' || Full path to toolchain gcc, g++, etc binaries.
|'''CC_PREFIX''' || Full path to toolchain gcc, g++, etc binaries.
Line 184: Line 154:
  {
  {
     "version": "2.0.0",
     "version": "2.0.0",
     /* Configure Yocto SDK Constants from settings.json */
     /* Configure Debian SDK Constants from settings.json */
     "options": {
     "options": {
         "env": {
         "env": {
Line 220: Line 190:
             "includePath": [
             "includePath": [
                 "${workspaceFolder}/**",
                 "${workspaceFolder}/**",
                 "${config:VARISCITE.SDKTARGETSYSROOT}/usr/include/**"
                 "${config:VARISCITE.TARGETSYSROOT}/usr/include/**"
             ]
             ]
         }
         }
Line 230: Line 200:
Your workspace should look similar to this:
Your workspace should look similar to this:


[[File:vscode-gdb-build-2.png]]
[[File:vscode-gdb-build-debian-v1.png|1600px]]


Cross compile the project by selecting '''Terminal->Run Build Task...''' or entering <code>Ctrl+Shift+B</code> and selecting '''Build''':
Cross compile the project by selecting '''Terminal->Run Build Task...''' or entering <code>Ctrl+Shift+B</code> and selecting '''Build''':


[[File:vscode_run_build_task_2.png]]
[[File:vscode-run-build-task-debian-v1.png|1600px]]


Open a new VS Code terminal by selecting '''Terminal->New Terminal''' or entering <code>Ctrl+Shift+`</code>.
Open a new VS Code terminal by selecting '''Terminal->New Terminal''' or entering <code>Ctrl+Shift+`</code>.
Line 280: Line 250:
# <code>TARGET_IP</code>: The IP Address of the target device
# <code>TARGET_IP</code>: The IP Address of the target device
# <code>PROGRAM</code>: The name of the binary executable, <code>hello.bin</code> in this example
# <code>PROGRAM</code>: The name of the binary executable, <code>hello.bin</code> in this example
# <code>TARGET_DIR</code>: The target directory to upload the binary executable, <code>/root</code> in this example
# <code>TARGET_PASSWORD:</code>: The target password, <code>root</code> in this example


In the end, tasks.json will run this script at the beginning of each debug session.
In the end, tasks.json will run this script at the beginning of each debug session.
Line 287: Line 259:
  readonly TARGET_IP="$1"
  readonly TARGET_IP="$1"
  readonly PROGRAM="$2"
  readonly PROGRAM="$2"
  readonly TARGET_DIR="/home/root"
  readonly TARGET_DIR="/root"
readonly TARGET_PASSWORD="root"
SSHPASS=""
# Use sshpass if TARGET_PASSWORD not empty
if [ ! -z "${TARGET_PASSWORD}" ]; then
    SSHPASS="sshpass -p ${TARGET_PASSWORD}"
fi
   
   
  # Must match startsPattern in tasks.json
  # Must match startsPattern in tasks.json
Line 293: Line 272:
   
   
  # kill gdbserver on target and delete old binary
  # kill gdbserver on target and delete old binary
  ssh root@${TARGET_IP} "sh -c '/usr/bin/killall -q gdbserver; rm -rf ${TARGET_DIR}/${PROGRAM}  exit 0'"
  ${SSHPASS} ssh root@${TARGET_IP} "sh -c '/usr/bin/pkill -f gdbserver; rm -rf ${TARGET_DIR}/${PROGRAM}  exit 0'"
   
   
  # send the program to the target
  # send the program to the target
  scp ${PROGRAM} root@${TARGET_IP}:${TARGET_DIR}
  ${SSHPASS} scp ${PROGRAM} root@${TARGET_IP}:${TARGET_DIR}
   
   
  # Must match endsPattern in tasks.json
  # Must match endsPattern in tasks.json
Line 302: Line 281:
   
   
  # start gdbserver on target
  # start gdbserver on target
  ssh -t root@${TARGET_IP} "sh -c 'cd ${TARGET_DIR}; gdbserver localhost:3000 ${PROGRAM}'"
  ${SSHPASS} ssh -t root@${TARGET_IP} "sh -c 'cd ${TARGET_DIR}; gdbserver localhost:3000 ${PROGRAM}'"


== Create launch.json ==
== Create launch.json ==
Line 353: Line 332:
  {
  {
     "version": "2.0.0",
     "version": "2.0.0",
     /* Configure Yocto SDK Constants from settings.json */
     /* Configure Debian SDK Constants from settings.json */
     "options": {
     "options": {
         "env": {
         "env": {

Latest revision as of 18:27, 27 April 2023

Warning: This page is designed to be used with a 'release' URL parameter.

This page is using the default release mx8mm-debian-bullseye-5.4-2.1.x-v1.3.
To view this page for a specific Variscite SoM and software release, please follow these steps:

  1. Visit variwiki.com
  2. Select your SoM
  3. Select the software release


DART-MX8M-MINI - Debian Programming with Visual Studio Code

Overview

Visual Studio Code (VS Code) is a powerful, modern, open-source code editor that can be used to develop and debug C/C++ applications on Variscite System on Modules.

This guide demonstrates how to create and debug a C++ application using VS Code on the DART-MX8M-MINI.

Create your rootfs with VS Code debug support

Debugging with VS Code requires your preferred SSH server (openssh, dropbear, etc), and gdbserver installed on the target device.

The packages can be installed by running the following commands on the target:

# apt-get update && apt-get -y upgrade
# apt-get -y install gdbserver openssh-server 
Note: The package openssh-server may possibly already be installed.

If you want to learn how to add the packages at compile time, please refer to Adding Debian packages.

Setup Host Computer Environment

Please follow the steps below to prepare a fresh Ubuntu 20.04 installation for VS Code debugging:

Install Dependencies

$ sudo apt-get -y update
$ sudo apt-get -y install build-essential gdb gdb-multiarch git sshpass

Install VS Code

$ sudo snap install --classic code

Install VS Code Extensions

VS Code has a graphical interface for installing and managing extensions. To learn more, please see Using extensions in Visual Studio Code

For this guide, we will install the required extensions using the command line:

$ code --install-extension ms-vscode.cpptools

Install Debian Toolchain

To install the toolchain, follow the Debian Toolchain installation guide.

Create, cross compile, and run a new "Hello, World!" project

Open a new terminal, create an empty project directory and open VS Code:

$ mkdir ~/var-hello-world
$ cd ~/var-hello-world
$ code .

This will launch VS Code with ~/var-hello-world as working directory (which is currently empty):

Vscode start.png

Next, we will create the following files:

main.cpp Source code for the demo program hello.bin
Makefile Makefile to cross compile main.cpp to hello.bin
.vscode/settings.json VS Code file to configure global environment variables for the SDK/toolchain
.vscode/tasks.json VS Code file to override or add new tasks. Runs Makefile when VS Code build command is executed.
.vscode/c_cpp_properties.json VS Code file to configure include path for IntelliSense.

To create a new file or folder in VS Code, right click in the VS Code explorer view and select New File or New Folder:

Vscode start newfile.png

Create a new file called main.cpp:

main.cpp:

#include <stdio.h>

int main(int argc, char *argv[]) {
    printf("Hello, World!\n");
    return 0;
}

Create a new Makefile to build hello.bin:

Makefile:

all: main.cpp
	$(CXX) $(CXXFLAGS) -Og main.cpp -g -o hello.bin 
clean:
	rm -f hello.bin

Create a new folder named .vscode. Then, create a new file .vscode/settings.json

.vscode/settings.json:

{
	"VARISCITE": {
		/* Target Device Settings */
		"TARGET_IP":"192.168.0.141",

		/* Project Settings */
		"PROGRAM":"hello.bin",

		/* Debian SDK Configuration */
		"ARCH":"aarch64-linux-gnu",
		"TOOLCHAIN":"/home/USER/debian_imx8mm-var-dart/toolchain/gcc-linaro-6.3.1-2017.05-x86_64_aarch64-linux-gnu",
		"TARGETSYSROOT":"/home/USER/debian_imx8mm-var-dart/toolchain/sysroot",

		/* Debian SDK Constants */
		"CC_PREFIX": "${config:VARISCITE.TOOLCHAIN}/bin/${config:VARISCITE.ARCH}-",
		"CXX": "${config:VARISCITE.CC_PREFIX}g++ --sysroot=${config:VARISCITE.TARGETSYSROOT}",
		"CC": "${config:VARISCITE.CC_PREFIX}gcc --sysroot=${config:VARISCITE.TARGETSYSROOT}",
	}
}

The table below describes the global variables in settings.json. They can be accessed in other json files, for example ${config:VARISCITE.TARGET_IP}:

TARGET_IP The IP Address of the DART-MX8M-MINI target device
PROGRAM Must match the name of the binary generated by Makefile
ARCH Architecture prefix for gcc, g++, gdb, etc. Align with CXX variable set by /opt/fslc-xwayland/3.1/environment-setup-aarch64-fslc-linux
TOOLCHAIN Path to the cross compiler (located at ~/debian_imx8mm-var-dart/toolchain)
TARGETSYSROOT Path to the sysroot (located at ~/debian_imx8mm-var-dart/toolchain/sysroot)
CC_PREFIX Full path to toolchain gcc, g++, etc binaries.
CXX Path to cross g++ binary and sysroot
CC Path to cross gcc binary and sysroot

Create a new file .vscode/tasks.json. tasks.json has three root objects:

  • options: Define CC and CXX environment variables for the Makefile.
  • presentation: Configures the behavior of VS Code's integrated Terminal for all tasks.
  • tasks: An array of task configurations. The example below creates a single 'build task that runs the Makefile when the VS Code build task is executed.

.vscode/tasks.json:

{
    "version": "2.0.0",
    /* Configure Debian SDK Constants from settings.json */
    "options": {
        "env": {
            "CXX": "${config:VARISCITE.CXX}",         /* Used by Makefile */
            "CC": "${config:VARISCITE.CC}",           /* Used by Makefile */
        }
     },
     /* Configure integrated VS Code Terminal */
     "presentation": {
        "echo": false,
        "reveal": "always",
        "focus": true,
        "panel": "dedicated",
        "showReuseMessage": true,
    },
    "tasks": [
        /* Configure Build Task */
        {
            "label": "build",
            "type": "shell",
            "command": "make clean; make -j$(nproc)",
            "problemMatcher": ["$gcc"]
        },
    ]
}

Create vscode/c_cpp_properties.json to configure the include path for IntelliSense.

.vscode/c_cpp_properties.json:

{
    "configurations": [
        {
            "name": "Linux",
            "includePath": [
                "${workspaceFolder}/**",
                "${config:VARISCITE.TARGETSYSROOT}/usr/include/**"
            ]
        }
    ],
    "version": 4
}


Your workspace should look similar to this:

Vscode-gdb-build-debian-v1.png

Cross compile the project by selecting Terminal->Run Build Task... or entering Ctrl+Shift+B and selecting Build:

Vscode-run-build-task-debian-v1.png

Open a new VS Code terminal by selecting Terminal->New Terminal or entering Ctrl+Shift+`.

Deploy hello.bin to the target device using SCP:

$ scp hello.bin root@<ip addr>:/home/root/

Vscode new terminal 2.png

Launch hello.bin on the target device:

# ./hello.bin 
Hello, World!

Remote Debugging with VS Code

After verifying hello.bin runs on the target device, we can now setup VS Code for remote debugging.

The working directory should currently have these files:

variscite@ubuntu:~/var-hello-world$ find 
.vscode/settings.json
.vscode/tasks.json
./Makefile
./main.cpp
./hello.bin

To enable debugging, we will edit .vscode/tasks.json to add a var-deploy-gdb debug task and add two additional files to the project:

var-deploy-gdb.sh Generic script to deploy and launch gdbserver
.vscode/launch.json VS Code file to configure debug settings. Runs var-build-and-debug in tasks.json
.vscode/tasks.json Edit to call var-deploy-gdb.sh prior to debugging.


Create var-deploy-gdb.sh

First, add a generic script deploy a program and launch gdbserver. The script requires two arguments:

  1. TARGET_IP: The IP Address of the target device
  2. PROGRAM: The name of the binary executable, hello.bin in this example
  3. TARGET_DIR: The target directory to upload the binary executable, /root in this example
  4. TARGET_PASSWORD:: The target password, root in this example

In the end, tasks.json will run this script at the beginning of each debug session.

var-deploy-gdb.sh:

#!/bin/bash
readonly TARGET_IP="$1"
readonly PROGRAM="$2"
readonly TARGET_DIR="/root"
readonly TARGET_PASSWORD="root"

SSHPASS="" 
# Use sshpass if TARGET_PASSWORD not empty
if [ ! -z "${TARGET_PASSWORD}" ]; then
    SSHPASS="sshpass -p ${TARGET_PASSWORD}"
fi

# Must match startsPattern in tasks.json
echo "Deploying to target"

# kill gdbserver on target and delete old binary
${SSHPASS} ssh root@${TARGET_IP} "sh -c '/usr/bin/pkill -f gdbserver; rm -rf ${TARGET_DIR}/${PROGRAM}  exit 0'"

# send the program to the target
${SSHPASS} scp ${PROGRAM} root@${TARGET_IP}:${TARGET_DIR}

# Must match endsPattern in tasks.json
echo "Starting GDB Server on Target"

# start gdbserver on target
${SSHPASS} ssh -t root@${TARGET_IP} "sh -c 'cd ${TARGET_DIR}; gdbserver localhost:3000 ${PROGRAM}'"

Create launch.json

VS Code has a powerful built in debugger capable of debugging many programming languages. In this step, we will add a configuration for debugging using the C/C++ extension:

.vscode/launch.json:

{
    "version": "0.2.0",
    "configurations": [{
        "name": "GDB debug",
        "type": "cppdbg",
        "request": "launch",
        "program": "${config:VARISCITE.PROGRAM}",
        "args": [],
        "stopAtEntry": true,
        "cwd": "${workspaceFolder}",
        "environment": [],
        "console": "integratedTerminal",
        "MIMode": "gdb",
        "targetArchitecture": "arm64",
        "preLaunchTask": "var-deploy-gdb",
        "setupCommands": [{
            "description": "Enable pretty-printing for gdb",
            "text": "-enable-pretty-printing",
            "ignoreFailures": true
        }],
        "miDebuggerPath": "/usr/bin/gdb-multiarch",
        "miDebuggerServerAddress": "${config:VARISCITE.TARGET_IP}:3000",
    }]
}

See the table below for important details regarding launch.json variables:

miDebuggerServerAddress Must match the IP Address of the target device
program Must match the name of the binary generated by the the Makefile
preLaunchTask Must match the name of the task in .vscode/tasks.json in the following step


Edit tasks.json

In launch.json, we created a preLaunchTask to run a task named var-deploy-gdb at the beginning of each debugging session. This task is configured by adding a new task var-deploy-gdb to .vscode/tasks.json:

.vscode/tasks.json:

{
    "version": "2.0.0",
    /* Configure Debian SDK Constants from settings.json */
    "options": {
        "env": {
            "CXX": "${config:VARISCITE.CXX}",
            "CC": "${config:VARISCITE.CC}",
        }
     },
     /* Configure integrated VS Code Terminal */
     "presentation": {
        "echo": false,
        "reveal": "always",
        "focus": true,
        "panel": "dedicated",
        "showReuseMessage": true,
    },
    "tasks": [
        /* Configure launch.json (debug) preLaunchTask Task */
        {
            "label": "var-deploy-gdb",
            "isBackground": true,
            "problemMatcher":{
                "base": "$gcc",
                "background": {
                    "activeOnStart": true,
                    "beginsPattern":  "Deploying to target",
                    "endsPattern":  "Starting GDB Server on Target"
                }
            },
            "type": "shell",
            "command": "sh",
            "args": [
                "var-deploy-gdb.sh",
                "${config:VARISCITE.TARGET_IP}",
                "${config:VARISCITE.PROGRAM}"
            ],
            "dependsOn": ["build"],
        },
        /* Configure Build Task */
        {
            "label": "build",
            "type": "shell",
            "command": "make clean; make -j$(nproc)",
            "problemMatcher": ["$gcc"]
        },
    ]
}


The following table summarizes the var-deploy-gdb configuration in tasks.json:

label Must match preLaunchTask in launch.json
type This task will launch a shell
command Launch sh, with arguments var-build-and-debug.sh 192.168.0.136 hello.bin

Launch a Debugging Session

After following the steps above, the working directory should now have these files:

~/var-hello-world$ find
.vscode/c_cpp_properties.json
.vscode/launch.json
.vscode/settings.json
.vscode/tasks.json
./Makefile
./var-deploy-gdb.sh
./main.cpp
./hello.bin

A new debugging session can be started by selecting Run->Start Debugging or by pressing 'F5' on the keyboard. VS Code will switch to the debug perspective and launch a gnome-terminal running gdbserver on the target device:

Vscode debug 2.png

Example Project Source Code

The source code for this example is available from Variscite's Github repository:

$ git clone https://github.com/varigit/var-demos
$ cd var-demos/vscode-demos/hello-world

Launch VS Code:

$ code .

Configure the target device IP Address and SDK variables in .vscode/settings.json

Finally, start a debugging session by selecting Run->Start Debugging or pressing 'F5' on the keyboard.