Страница 1 из 1

STM32CubeIDE & ncurses error on Rosa13 - How to resolve

Добавлено: 28 мар 2025, 01:08
MikiLinux
Salve,

usando il programma STM32CubeIDE viene riscontrato questo problema:
STM32CubeIDE error nucrses library
STM32CubeIDE error nucrses library
Indagando sull'eseguibile, non trova la libreria libncurses.so.5:
libncurses.so.5 not found
libncurses.so.5 not found
Ma nel filesystem è presente un collegamento, solo che punta ad un file inesistente di nome libncurses.so.6.4:
File non esistente
File non esistente
Broken Link
Broken Link
Dallo spec file del pacchetto libncurses c'è un errore di distrazione nella terza riga;

Код: Выделить всё

%define	majorminor	6.4
Qui occorre sostituire 6.5 al posto di 6.4 e tutto si risolve. :-)

####################################
Hello,

- using the STM32cubeIDE program this problem is encountered (1st image above)

- Investigating the executable, it does not find the library libncurses.so.5 (2nd image above)

- There is a link in the filesystem, but it points to a non-existent file named libncurses.so.6.4 (3rd & 4th images above)

From the spec file of the libncurses package there is a simple error in the third line;

Код: Выделить всё

%define	majorminor	6.4
here it is necessary to substitute 6.5 instead of 6.4 and everything is solved. :-)

Re: STM32CubeIDE & ncurses error on Rosa13 - How to resolve

Добавлено: 29 мар 2025, 14:10
irton
fixed. thanks.