Segmentation fault when I run hello world on the beaglebone blue.
I successfully compiled Hello world using the GNAT 2019-arm-elf compiler on Windows. For the Ada runtime I have tried zfp-cortex-m7f, and zfp-cortex-m7df. Beaglebone Blue has a armv7l, Could it be that the Ada Runtime doesn't exist for this chip?
project Default is
for Source_Dirs use ("src");
for Object_Dir use "obj";
for Main use ("main.adb");
for Target use "arm-eabi";
for Runtime ("ada") use "zfp-cortex-m7f";
end Default;
with ada.text_io;
procedure Main is
begin
-- Insert code here.
ada.text_io.put_line("hello!");
end Main;