Olimex Support Forum

OLinuXino Android / Linux boards and System On Modules => A13 => Topic started by: zdenekrejci on January 24, 2017, 09:01:02 PM

Title: What softare to use for onlinuxino and how to transfear it
Post by: zdenekrejci on January 24, 2017, 09:01:02 PM
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
Title: Re: What softare to use for onlinuxino and how to transfear it
Post by: MarkusP on January 26, 2017, 10:39:55 AM
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