Problems with GNAT Programming (IDE) and STM32

I am using the Ada IDE GNAT Programming Studio (GPS, GPL 2017 release) and it is difficult for me to work with STM32F4Disco.

On Linux (Ubuntu 17.10), when I try to open an STM32 project, the GPS freezes. No core dump, no error message. The exception message is in .gsp / log, but it does not seem to have finished loading.

Help would be greatly appreciated. Thanks you

Edit: I installed GNAT 2017, Spark, and the arm elf for Linux from AdaCore.

Edit 2: I am deleting my GPS question on a Mac because it might be considered a software issue.

+4
source share
1 answer

You must install 32-bit support. On Ubuntu / Debian, run the following command:

sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386
+1
source

Source: https://habr.com/ru/post/1694156/


All Articles