Re: [Interest] Enabling NEON on a Qt Android app

2016-05-06 Thread Thiago Macieira
On sexta-feira, 6 de maio de 2016 00:38:10 PDT Thiago Macieira wrote: > On sexta-feira, 6 de maio de 2016 07:58:30 PDT Nuno Santos wrote: > > What are the necessary steps in order to enable NEON on a Arm processor > > that supports it? > > Compile a plugin for Neon and a plugin for non-Neon. At ru

Re: [Interest] Enabling NEON on a Qt Android app

2016-05-06 Thread Nuno Santos
Thanks for your insight Thiago. Regards, Nuno > On 06 May 2016, at 08:38, Thiago Macieira wrote: > > On sexta-feira, 6 de maio de 2016 07:58:30 PDT Nuno Santos wrote: >> What are the necessary steps in order to enable NEON on a Arm processor that >> supports it? > > Compile a plugin for Neon

Re: [Interest] Enabling NEON on a Qt Android app

2016-05-06 Thread Thiago Macieira
On sexta-feira, 6 de maio de 2016 07:58:30 PDT Nuno Santos wrote: > What are the necessary steps in order to enable NEON on a Arm processor that > supports it? Compile a plugin for Neon and a plugin for non-Neon. At runtime, determine which one to load, then call functions on it. Do not try to i

Re: [Interest] Enabling NEON on a Qt Android app

2016-05-06 Thread ekke
Am 06.05.16 um 08:58 schrieb Nuno Santos: > Hi, > > > Also, in the following article: https://www.kdab.com/qt-android-episode-4/ > > *Advantages:* > > * Using Ministro, the user needs to download the Qt > libs *ONLY* once. If the user downloads another Qt application, it > will use t

[Interest] Enabling NEON on a Qt Android app

2016-05-05 Thread Nuno Santos
Hi, What are the necessary steps in order to enable NEON on a Arm processor that supports it? I’m wondering if I need to enable things like -mfpu=neon on GCC flags or if I just simply need to do things like this: http://developer.android.com/ndk/guides/cpu-arm-neon.html