From e41797767a196cc356299a47827cca510b5582e6 Mon Sep 17 00:00:00 2001 From: Lotte Steenbrink Date: Wed, 24 Jun 2020 15:07:57 +0200 Subject: [PATCH] beginner/README.md: spell out ABI acronym once --- beginner/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beginner/README.md b/beginner/README.md index fc16b0f..e496d67 100644 --- a/beginner/README.md +++ b/beginner/README.md @@ -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.