What softare to use for onlinuxino and how to transfear it

Started by zdenekrejci, January 24, 2017, 09:01:02 PM

Previous topic - Next topic

zdenekrejci

Hi there,
I have just received my first onlinuxino A13 I would like to try some hello app. I have found many tutorials but somehow none them answear the main question.
- What software should I use? QT CREATOR?
If so lets say I have linux on my PC and will create hello app how to get this app to my onlinuxino? Every time
just copy on some flash or is there another way?

Thank you

MarkusP

Hi zdenekrejci,

I'm using Qt Creator and the armhf cross development toolchain of Debian Stretch to develop my software.

dpkg --add-architecture armhf
apt update
apt install crossbuild-essential-armhf
apt install qtcreator


This should at least be enough to compile software using the standard library. Because of dependency issues I couldn't install the Qt5 development packages for armhf, so the actual building I do in an armhf chroot.

On my A13 OLinuXino I installed an OpenSSH server, so that I can easily push my applications there. I hope these recommendations might help.

MarkusP