mirror of
https://github.com/ferrous-systems/embedded-trainings-2020.git
synced 2025-01-24 14:58:09 +00:00
beginner/README.md: spell out ABI acronym once
This commit is contained in:
parent
d7cc36d237
commit
e41797767a
1 changed files with 1 additions and 1 deletions
|
@ -410,7 +410,7 @@ thumbv8m.main-none-eabi
|
|||
thumbv8m.main-none-eabihf
|
||||
```
|
||||
|
||||
The compilation targets will usually be named using the following format: `$ARCHITECTURE-$VENDOR-$OS-$ABI`, where the `$VENDOR` field is sometimes omitted. Bare metal and `no_std` targets, like microcontrollers, will often use `none` for the `$OS` field. When the `$ABI` field ends in `hf` it indicates that the output ELF uses the *hardfloat* ABI
|
||||
The compilation targets will usually be named using the following format: `$ARCHITECTURE-$VENDOR-$OS-$ABI`, where the `$VENDOR` field is sometimes omitted. Bare metal and `no_std` targets, like microcontrollers, will often use `none` for the `$OS` field. When the `$ABI` field ends in `hf` it indicates that the output ELF uses the *hardfloat* Application Binary Interface (ABI).
|
||||
|
||||
The `thumb` targets listed above are all the currently supported ARM Cortex-M targets. The table below shows the mapping between compilation targets and ARM Cortex-M processors.
|
||||
|
||||
|
|
Loading…
Reference in a new issue