Cross compile for BeagleBone Black in Eclipse with Docker
Initial situation # If you want to cross compile for the ARM plattform BeagleBone Black, you need to have the cross compiler arm-linux-gnueabihf- installed on your system. In most distributions the compiler can be installed via the package manager. If you are using an IDE like Eclipse you can set up a new cross project and choose arm-linux-gnueabihf- as compiler. Eclipse will find the correct compiler in $PATH. At someday I ran into the problem that my compiled programm was not executable on the target. ...