I am fond of using gcc to compile small little C and C++ programs on my main computer. However, I also have a Raspberry Pi, and, being a 700-MHz single-core computer, I would prefer to not have to do my development work on it every time I want to create a binary for it. How (for I know that there's a way) do I cross-compile my program for the Raspberry Pi using my x86 laptop? And is there a way that I may compile C(++) programs on the Pi but produce an x86 binary? If it's any help, "The SoC is a Broadcom BCM2835. This contains an ARM1176JZFS, with floating point..." (according to the official Raspberry Pi FAQ).
Using a combination of poking around in the
apt
repositories and the extremely excellent Building Embedded Linux Systems (2nd edition, 2008, O'Reilly), I found this:That is both the name of command and the package that you install to acquire it. Once invoked, it acts exactly as "vanilla"
gcc
, with the only exception that it builds packages for the ARM architecture (or a subset including the BCM2835, at least). Building Embedded Linux Systems (pg 93-94) explains that the names used for invoking the GNU tools in a cross-compilation manner follows this format:The
-gcc
at the end of the topmost example is the component, used for specifing which part ofbinutils
you want to use. It can be swapped out for another GNU toolchain component, such asld
(linker) oras
(assembler). Forarm-linux-gnueabi-gcc
,arm
is the architecture,linux
is the kernel,gnueabi
is the os, andgcc
is the component. Where is the manufacturer? Apparently, the manufacturer can be specified as "unknown", as it rarely makes a difference, or left out alltogether (including it would makearm-linux-unknown-gnueabi-gcc
).Officially documented method
https://www.raspberrypi.org/documentation/linux/kernel/building.md (GitHub)
Tested in Ubuntu 17.10, tools repo at 5caa7046982f0539cf5380f94da04b31129ed521
I am not sure at 100%, but, using https://tandrepires.wordpress.com/2012/08/01/raspberry-pi-openelec-pvr-dvb-t/, you could try: 1) Required libraries:
2) Compile the project with the following options, where N is the number of cores of your x86 CPU:
I hope it helps. `