I typically write Linux and QNX command-line applications in VIM, generally steer away from graphical IDEs. I am currently working on a simple GUI-based application for the RPI that presents a text field for entering commands, and a read-only text field for displaying logging statements.
Is there a de facto standard means of setting up a build environment in Linux (ie: Ubuntu) so I can compile for ARM on the RPI and just deploy the binaries via NFS/SSH?
Additionally, is there a standard means of creating a staging area (ie: a bare-bones empty QT project with a makefile in place that already knows that the only valid target is to use the x86 compiler targeted for ARM)?
The end goal is to set up a few virtual machines with a bunch of empty/blank sample projects that will just build via the command-line when executing make
.
I have read through other similar questions I found on SO, but they deal solely with installing the compiler. I also need to figure out how to set up a sample makefile project.
Thank you.
References