https://github.com/Fabien-Chouteau/bare_runtime
Author:GPL-3.0-or-later WITH GCC-exception-3.1
Version:14.0.0
Alire CI: Dependencies:No dependents.
Badge:
First edit you alire.toml
file and add the following elements:
bare_runtime
in the dependency list:
[[depends-on]]
bare_runtime = "*"
[[depends-on]]
gnat_arm_elf = "*"
[gpr-set-externals]
BARE_RUNTIME_SWITCHES = "-mlittle-endian -mthumb -mfloat-abi=hard -mcpu=cortex-m4 -mfpu=fpv4-sp-d16"
Then edit your project file to add the following elements:
with "bare_runtime.gpr";
Target
and Runtime
attributes:
```ada
for Target use “arm-eabi”;
for Runtime (“Ada”) use Bare_Runtime’Runtime (“Ada”);