[Interest] Compiling Qt for Webassembly

2018-10-05 Thread Vadim Peretokin
I'm trying to compile Qt 5.12.0 for webassembly, but it has compile errors: https://hastebin.com/vovisayapi.bash This is on Ubuntu 18.04, emcc 1.38.12 (commit 0d8576c0e8f5ee09a36120b9d44184b5da2f2e7a), gcc 7.3.0. Any ideas what's going wrong? (I wouldn't mind trying the latest Qt sources, except

Re: [Interest] QDatetime issue with date beyond 2038

2018-10-05 Thread Thiago Macieira
On Friday, 5 October 2018 10:48:18 PDT Ramakanth Kesireddy wrote: > Hi, > > Am unable to set date and time(beyond 2038) using QDateTime on 32 bit linux > kernel. Using QDateTime::currentdatetime() to retrieve the current > datetime set. > > Please let me know if there is any API to set date and

Re: [Interest] Date Time issue

2018-10-05 Thread Roland Hughes
ithub.com/rhardih/app-with-extension-example > > All I've done is the following: > > 1. Generated the default Qt Quick Controls 2 Swipe app. > 2. Generated the default Qt Quick 2 extension plugin. > 3. Added a custom QML invokable method, "foo()" on the default "MyItem"

Re: [Interest] QDatetime issue with date beyond 2038

2018-10-05 Thread Andrew Ialacci
Might be helpful: https://en.wikipedia.org/wiki/Year_2038_problem Sent from my iPad On Oct 5, 2018, at 7:48 PM, Ramakanth Kesireddy mailto:rama.k...@gmail.com>> wrote: Hi, Am unable to set date and time(beyond 2038) using QDateTime on 32 bit linux kernel. Using

[Interest] QDatetime issue with date beyond 2038

2018-10-05 Thread Ramakanth Kesireddy
Hi, Am unable to set date and time(beyond 2038) using QDateTime on 32 bit linux kernel. Using QDateTime::currentdatetime() to retrieve the current datetime set. Please let me know if there is any API to set date and time or do I need to upgrade to 64 bit linux kernel to resolve the same? Best

Re: [Interest] Including Qt Quick 2 extension plugin in Android App

2018-10-05 Thread René Hansen
I don't have the problem if I just want a plain shared library, in that case just bundling the .so with ANDROID_EXTRA_LIBS works fine. Isolating code into an extension plugin with both QML components and Qt classes and using that in separate apps is my goal. If anyone has a working example +