Skip to main content
Visitor II
May 19, 2024
Question

STM32CubeIDE - 1.15.1 - Dependency to libncurses5

  • May 19, 2024
  • 5 replies
  • 6437 views

Hello,

I want to use STM32CubeIDE with Ubuntu 24.04 (new LTS), but on this version we don't have libncurses5 but libncurses6.

 

If we install STM32CubeIDE from .deb we have an error because libncurses5 is not installable

If we install STM32CubeIDE from general linux installer, we have no error as it doesn't check the dependency.

 

The problem is, when I want to flash my device using STM32CubeIDE it force the use or arm-none-eabi-gdb provided by ST here: `/opt/st/stm32cubeide_1.15.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.100.202403111256` so it fails because arm-none-eabi-gdb (from ST) require libncurses5

 

My question is simple:

How to use arm-none-eabi-gdb provided by my computer instead of the version provided by ST .. ?

    5 replies

    Radosław
    Associate II
    May 19, 2024

    Install you own  arm-none-eabi compiler  and add into tollchain manager in STM32CubeIDE

    Semer CHERNI
    ST Employee
    May 21, 2024

    Hello @Dunfell 

    First let me thank you for posting.

    At this stage only Linux®: Ubuntu® LTS 20.04 and LTS 22.04, and Fedora® 37 are supported by STM32CubeIDE.

    Check the release note the Host PC system requirements  section.

    KR,
    Semer.

    Ed Peguillan III
    Graduate
    June 28, 2024

    Thank you @Semer CHERNI for the information. Does ST have a timeline for when the IDE will be updated? There are a number of dependency issues now for the Linux CubeIDE which prevent anyone with a modern and fully updated Linux install from using it, including but not limited to:

    • dependence upon `Python 2.7`, which was deprecated over 4 years ago. This is probably a huge security problem.
    • dependence upon `libnss3`, but no errors are thrown which make that obvious
    • dependence upon weird settings for `ulimit` that otherwise cause the CubeIDE to lock up and consume 100% CPU usage until killed if not set correctly
    • java runtime dependence also appears to be breaking it
    • ncurses6 not supported, as mentioned above
    • many more

    Using an older version of Linux is not a feasible option for us at this time, unfortunately.

    snacker
    Associate
    September 2, 2024

    @Semer CHERNI , is there a timeline for the IDE's supporting 24.04 and the newer libraries?

    snacker
    Associate
    September 2, 2024

    Actually, I am able to install and run (so far) using the "STM32CubeIDE Generic Linux Installer" st-stm32cubeide_1.16.0_21983_20240628_1741_amd64 on Ubuntu 24.04 LTS

    snacker
    Associate
    September 2, 2024

    Well, the IDE works, but I can't debug anything.  I get:

    Could not determine GDB version using command: arm-none-eabi-gdb --version
    arm-none-eabi-gdb: error while loading shared libraries: libncurses.so.5: cannot open shared object file: No such file or directory

    This does not work for 24.04:
        sudo apt-get install libncurses5

    This  thread is similar:
        https://community.st.com/t5/stm32cubeide-mcus/i-m-working-with-ubuntu-and-it-gives-me-the-following-error/td-p/244902

    Visitor II
    September 19, 2024

    I was able to get the debugger working for 1.13.2 in Ubuntu 24.04 by running these commands explained here:

    wget http://archive.ubuntu.com/ubuntu/pool/universe/n/ncurses/libtinfo5_6.4-2_amd64.deb && sudo dpkg -i libtinfo5_6.4-2_amd64.deb && rm -f libtinfo5_6.4-2_amd64.deb

    wget http://archive.ubuntu.com/ubuntu/pool/universe/n/ncurses/libncurses5_6.4-2_amd64.deb && sudo dpkg -i libncurses5_6.4-2_amd64.deb && rm -f libncurses5_6.4-2_amd64.deb

    snacker
    Associate
    October 7, 2024

    Thanks! I can run it using that.

    It would be nice if ST used supported libraries. Launchpad.net shows "This package contains the legacy version of the shared low-level terminfo library."