Re: [Interest] Installation Sizes for Applications using Qt

2021-08-27 Thread Ben Cottrell
Yes, I've tried configure with these command line arguments: ./configure -opensource -confirm-license -platform linux-g++ -prefix /opt/6.1.2-linux-g++-static -static I got lots of errors after running configure, about missing XCB libraries, so following the Ubuntu CI script, I installed them

Re: [Interest] Qt6 porting guidance: (MSDEV) QMAKE_CXXFLAGS += /source-charset

2021-08-27 Thread Thiago Macieira
On Monday, 2 August 2021 07:36:49 PDT David M. Cotter wrote: > does anyone have any idea about this? please? You didn't say what the problem was. Qt doesn't know the encoding of your source files. You must either tell the compiler to convert all string literals to UTF-8 or you must convert them

Re: [Interest] Qt6 porting guidance: (MSDEV) QMAKE_CXXFLAGS += /source-charset

2021-08-27 Thread David M. Cotter
my code in MANY places assumes that the charset is macRoman, and converts from macRoman to unicode. i'd have to change all those places, and there is no easy way to find them all. it's just a lot of work i don't want to do right now > On Aug 27, 2021, at 3:43 AM, Joerg Bornemann wrote: > > On 8

[Interest] Service break in download.qt.io and master.qt.io

2021-08-27 Thread Jani Heikkinen
Hi all, download.qt.io and master.qt.io servers will be moved to different platform on Monday 30th of August starting 8.00am CET. Estimation is that move will last about 1 hour. During that time server are down. After the move is done, please inform matti.tuomiko...@qt.io immediately if you

Re: [Interest] Qt6 porting guidance: (MSDEV) QMAKE_CXXFLAGS += /source-charset

2021-08-27 Thread Joerg Bornemann
On 8/2/21 4:36 PM, David M. Cotter wrote: does anyone have any idea about this? please? I was about to suggest something. But you wrote: > and no, before you suggest it, i can't convert the sources to utf8 > encoding either, cuz that would break a lot of other stuff. Why does converting your

Re: [Interest] Installation Sizes for Applications using Qt

2021-08-27 Thread Joerg Bornemann
On 8/27/21 2:32 AM, Ben Cottrell wrote: So Qt makes sense for large applications, but for smaller ones, it's more efficient to use individual libraries per platform. Until Qt is more easily configurable, I cannot justify using it's libraries in small applications. Did you try one of the sugges