Linking libraries with the nRF connect extension

Hello all,

I am a student trying to understand the nRF connect extension on vscode on windows subsystem wsl2. Usually when using gcc to link external libraries and compile code, it is simply using gcc -o main main.c -l<library name> in the terminal. However, on the nRF connect, building and flashing a program onto the nrf52832 board is just a matter of pressing the build project and flash on the vscode interface as shown in the figure below.

Hence I would like to know how do I link libraries on the nRF connect extension on vscode? Thank you.

Parents
  • Hi,

    2. Usually when using gcc to link external libraries and compile code, it is simply using gcc -o main main.c -l<library name> in the terminal.

    Yep. However, the nRF Connect SDK uses the Zephyr build system to build stuff, which handles all the building, including the linking. So it is not as straight forward to include an external library.

    To check that this is not an XY Problem: What library do you want to include?

    Zephyr has a sample for including external library: https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/samples/application_development/external_lib/README.html. That is likely what you are looking for. Its docs are not very extensive, so probably have a look at its source, and it's CMakeLists.txt in particular.

    PS:

    do I link libraries on the nRF connect extension on vscode?

    It is not a VS Code extension question, but nRF Connect SDK and Zephyr question in general, as it is all being handeled in the project files. The VS Code extension does not have any features specifically for linking external libraries.

    Regards,
    Sigurd Hellesvik

Reply
  • Hi,

    2. Usually when using gcc to link external libraries and compile code, it is simply using gcc -o main main.c -l<library name> in the terminal.

    Yep. However, the nRF Connect SDK uses the Zephyr build system to build stuff, which handles all the building, including the linking. So it is not as straight forward to include an external library.

    To check that this is not an XY Problem: What library do you want to include?

    Zephyr has a sample for including external library: https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/samples/application_development/external_lib/README.html. That is likely what you are looking for. Its docs are not very extensive, so probably have a look at its source, and it's CMakeLists.txt in particular.

    PS:

    do I link libraries on the nRF connect extension on vscode?

    It is not a VS Code extension question, but nRF Connect SDK and Zephyr question in general, as it is all being handeled in the project files. The VS Code extension does not have any features specifically for linking external libraries.

    Regards,
    Sigurd Hellesvik

Children
Related