Home ›
Cross Compiling Options
Apr 24, 2010 By Johan Thelin
What is your strategy on cross compilation toolchains? Here we explore a
few options:
- DIY - requires you to manually start each step, unless you're comfortable enough to script the process. As each step takes ages, this can be a tedious job. However, it gives you full control and insight into each step.
- crosstool [http://www.kegel.com/crosstool/] - a scripted version of DIY + patches. Used to be my preferred tool, but hasn't been updated since 2006. Limited to glibc.
- crosstool-NG [http://ymorin.is-a-geek.org/projects/crosstool] - a rewrite of crosstool. Provides a menuconfig configuration interface, which makes it quite easy to use. You can also pass configurations around. Supports glibc, but also uclibc and eglibc.
- buildroot [http://buildroot.uclibc.org/] - builds a uclibc-based gcc in the process of building an entire system. The toolchain can be ripped out (you can also force buildroot to use an external toolchain - thus avoiding building the same toolchain over and over again). As the focus is on the entire system, this approach provides little insight of the toolchain, but in my experience, the outcome usually works well.
- scratchbox [http://www.scratchbox.org/] - provides uclibc or glibc based toolchains. Approaches cross compilation is a new way - providing an environment where the actual cross part of the compilation is abstracted away. Also provides an emulated target environment, so you can run your ARM binaries on your standard PC from within the scratchbox environment.
The available options are ordered in some sort of control freak factor order, where DIY provides loads of control over every tiny aspect, while scratchbox just makes things work.
Myself? Last time around I used ct-ng, but I've used them all (and will not DIY again unless forced ;) ).
______________________
Johan Thelin is a consultant working with Qt, embedded and free
software. On-line, he is known as e8johan.
The Magazine
Linux Journal is the premier source for how-tos, projects, product reviews, expert advice and opinions for everything Linux.
| Clonezilla Live | Sep 03, 2010 |
| No Steam for Linux - Right Now | Sep 02, 2010 |
| Qt and Layouts | Sep 02, 2010 |
| As Predicted, OpenSolaris Board Disbands | Sep 01, 2010 |
| Dual Boot openSUSE USB Stick Installer | Sep 01, 2010 |
| New Wine: Running Windows Music & Sound Applications Under Wine 1.2 | Aug 31, 2010 |
- Boot with GRUB
- New Wine: Running Windows Music & Sound Applications Under Wine 1.2
- Clonezilla Live
- Chapter 16: Ubuntu and Your iPod
- Monitoring Hard Disks with SMART
- Validate an E-Mail Address with PHP, the Right Way
- As Predicted, OpenSolaris Board Disbands
- Building a Home File Server
- No Steam for Linux - Right Now
- Qt and Layouts
- The new season again come, no
6 min 6 sec ago - very goood shopping
6 min 11 sec ago - very goood shopping
6 min 38 sec ago - lkaufoiw
34 min 2 sec ago - lkaufoiw
37 min 55 sec ago - It has some usb
5 hours 14 min ago - How can I get source for
6 hours 54 min ago - MEPIS
10 hours 58 min ago - Unfortunately, most things are based on interaction IRL
12 hours 43 min ago - Unfortunately, most things are based on interaction IRL
12 hours 43 min ago











Comments
I still use crosstool
Kegel's crosstool is still my favorite. Last week I modified it to build absolute latest toolchain combo GCC 4.5.0 + GLIBC 2.11.2 + BINUTILS 2.20 for powerpc32.
Crossplex
I've recently been introduced to Crossplex. While I haven't tried it yet, it looks promising.
MinGW
@BaloneyGeek - you are completely right. As an embedded guy, I kind of completely forgot the OS-to-OS cross compilation needs - especially MinGW. Briefly googling the topic, I ran into a thread where the CT-NG people are discussing adding mingw as a kernel type, thus allowing the build of Windows compatible toolchains from CT-NG.
Johan Thelin is a consultant working with Qt, embedded and free
software. On-line, he is known as e8johan.
Personally I used crosstool
Personally I used crosstool to build a toolchain to build applications that will run on Lantronix's SecureLinx console server (it uses a MIPS-EL processor with glibc - Debian Sarge packages are compatible). For the most part it was a matter of selecting the libc library and cpu type, then sit back and let it build.
For a ppc - uclibc embedded product we have at work I simply used ELDK 4.1 by DENX, which has a complete pre-compiled cross toolchain as well as a root filesystem with a complete build environment for native compilation for the target (if needed). Couldn't get any simpler than that!
DIY is the only way for certain things.
Suppose you were building the MinGW32 or MinGW64 toolchain. DIY would be the only way, unless you wanted to installl your distro packages, which'd always be somehow half broken anyway, or use the mingwmsvc- target which never seems to work out.
Post new comment