Skip to content

Tag Archives: GNU

Makefile template

24-Oct-10

This is not a finished example, but it contains enough information for me to use as a template most of the times. A bit of previous experience with GNU make and the places to modify are obvious. It helps me with the blank page syndrome. Some helpful links: GNU make GNU gcc GNU binutils   [...]

Linking without the standard libraries

10-Mar-09

On embedded projects it is very common to use a cross compilation toolchain to produce binaries for your target. When the target architecture is the same as the host, for example if we are using Intel based processors on our target, producing a cross compilation toolchain is too much overhead. But we may still want [...]

Cross compilation toolchains

06-Mar-09

When starting an embedded project the first thing to consider is the toolchain to use (if your BSP doesn’t contain one already). Embedded Debian Provides pre-built cross toolchains. It supports nearly all debian-supported architectures. The package emdebian-tools also provides the debian equivalent of crosstool (‘emchain’ )to build your own version of current toolchain. I really [...]