I've installed GPS GPS 6.1.1 (20150118)
hosted on i686-pc-mingw32 GNAT GPL 2015 (20150428-49)
.
It successfully compiles Hello World, but even release executable is huge since it includes statically compiled not-optimized runtime and (what is more important) as far as I understand ada runtime is licensed under GPL and can not be statically linked into closed-source executable.
How can I configure GPS / gcc to link runtime dynamically?
This is very close to this question, and the same answer applies.
However, in case you’d prefer to edit your project properties in GPS via the Project > Properties dialog:
go to the Switches tab (on the left hand side)
go to the Binder tab (at the top)
tick the Shared GNAT run time checkbox.
While you’re there, tick the Store call stack in exceptions checkbox too; this can help debugging an unhandled exception (the binder switch is
-E
).