Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| docs:guide-developer:toolchain:buildsystem_essentials [2023/03/06 05:01] – Fix leading letter casing brlin | docs:guide-developer:toolchain:buildsystem_essentials [2024/02/26 08:23] (current) – [Description] grammar issue juyongchun | ||
|---|---|---|---|
| Line 37: | Line 37: | ||
| The process of creating a cross compiler can be tricky. | The process of creating a cross compiler can be tricky. | ||
| - | It's not something that's regularly attempted and so the there' | + | It's not something that's regularly attempted and so there' |
| When you're dealing with embedded devices you'll often be provided with a binary copy of a compiler and basic libraries rather than instructions for creating your own - it's a time saving step but at the same time often means you'll be using a rather dated set of tools. | When you're dealing with embedded devices you'll often be provided with a binary copy of a compiler and basic libraries rather than instructions for creating your own - it's a time saving step but at the same time often means you'll be using a rather dated set of tools. | ||
| It's also common to be provided with a patched copy of the Linux kernel from the board or chip vendor, but this is also dated and it can be difficult to spot exactly what has been changed to make the kernel run on the embedded platform. | It's also common to be provided with a patched copy of the Linux kernel from the board or chip vendor, but this is also dated and it can be difficult to spot exactly what has been changed to make the kernel run on the embedded platform. | ||
| Line 111: | Line 111: | ||
| * Main objective is small memory and size footprint | * Main objective is small memory and size footprint | ||
| * Features that make no sense on embedded systems are disabled through configure or patched out | * Features that make no sense on embedded systems are disabled through configure or patched out | ||
| - | * Packages must be compilable | + | * Packages must be compatible |
| * Shipped " | * Shipped " | ||
| * Build variants and kconfig includes allow for configurable compile-time settings | * Build variants and kconfig includes allow for configurable compile-time settings | ||