- Mastering Embedded Linux Programming
- Chris Simmonds
- 320字
- 2021-07-30 09:45:00
Summary
The toolchain is always your starting point: everything that follows from that is dependent on having a working, reliable toolchain.
Most embedded build environments are based on a cross development toolchain which creates a clear separation between a powerful host computer building the code and a target computer on which it runs. The toolchain itself consists of the GNU binutils, a C compiler from the GNU compiler collection – and quite likely the C++ compiler as well – plus one of the C libraries I have described. Usually the GNU debugger, gdb, will be generated at this point, which I describe in Chapter 12, Debugging with GDB. Also, keep a watch out for the Clang compiler, as it will develop over the next few years.
You may start with nothing but a toolchain – perhaps built using crosstool-NG or downloaded from Linaro – and use it to compile all of the packages that you need on your target, accepting the amount of hard work this will entail. Or, you may obtain the toolchain as part of a distribution which includes a range of packages. A distribution can be generated from source code using a build system such as Buildroot or the Yocto Project, or it can be a binary distribution from a third party, maybe a commercial enterprise like Mentor Graphics or an open source project such as the Denx ELDK. Beware of toolchains or distributions that are offered to you for free as part of a hardware package: they are often poorly configured and not maintained. In any case, you should make the choice according to your situation, and then be consistent in its use throughout the project.
Once you have a toolchain, you can use it to build the other components of your embedded Linux system. In the next chapter, you will learn about the bootloader, which brings your device to life and begins the boot process.
- C語言程序設計教程(第2版)
- Oracle 12c中文版數據庫管理、應用與開發實踐教程 (清華電腦學堂)
- 基于免疫進化的算法及應用研究
- JavaScript+Vue+React全程實例
- JavaScript 程序設計案例教程
- Learning Apache Mahout Classification
- Microsoft 365 Certified Fundamentals MS-900 Exam Guide
- Unity 3D腳本編程:使用C#語言開發跨平臺游戲
- 軟件體系結構
- QGIS 2 Cookbook
- Java EE 7 with GlassFish 4 Application Server
- 人人都能開發RPA機器人:UiPath從入門到實戰
- Python應用與實戰
- Python Penetration Testing Essentials
- C語言從入門到精通(第5版)