What distribution-maintained cross-compile toolchain packages exist

compilercross-compilationembeddedtoolchain

I have just learned of Gentoo's sys-devel/crossdev package. This is a package that is useful for creating a cross-compiling toolchain.

Are there any other such packages out there on other distributions?

I'm specifically interested in distro-maintained packages because I've tried a couple of others (buildroot, crosstool) and it seems that and any time the distribution touches gcc or binutils, it invariably breaks at least the building of the toolchain if not the building of the project itself.

Best Answer

On Debian, there are apt-cross and dpkg-cross from Emdebian, which let you set up cross-compilation for many architectures (you get cross-compilers and libraries).

On Ubuntu, there's a crosschain for ARM, and a project to improve on this.

You can also create toolchain using crosstool-ng which is not link to a distribution.

Related Question