[Interest] Build Issues with QT 6.2.3

2022-02-05 Thread BeneschTech LLC
OS: Ubuntu 20.04 LTS Compiler Suite: clang 15 (from git) In the webengine build, a file fails because of -Werror. Maybe we need to take that off of the build flags? qt-everywhere-src-6.2.3/qtwebengine/src/3rdparty/chromium/third_party/harfbuzz-ng/src/src/hb-subset-cff1.cc:405:33: error: variable

Re: [Interest] Build Issues with QT 6.2.3

2022-02-06 Thread Bob Hood
On 2/5/2022 4:15 PM, BeneschTech LLC wrote: I have to say, not thrilled with the change to cmake/ninja, but maybe I'm just old and not "cool" LOL. You're not alone. ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listin

Re: [Interest] Build Issues with QT 6.2.3

2022-02-06 Thread BeneschTech LLC
Thanks! I dont like ruby either lol. I found two more files that broke as well the fixes were trivial. Havent tried to fix linguist yet. I have three big problems with the cmake and ninja combo: 1. Ninja uses all the cpu cores +1 by default. Unless you have a water cooled system you will overheat

Re: [Interest] Build Issues with QT 6.2.3

2022-02-06 Thread Volker Hilsheimer
> On 6 Feb 2022, at 15:37, BeneschTech LLC wrote: > > Thanks! I dont like ruby either lol. I found two more files that broke as > well the fixes were trivial. Havent tried to fix linguist yet. > > I have three big problems with the cmake and ninja combo: > 1. Ninja uses all the cpu cores +1 by

Re: [Interest] Build Issues with QT 6.2.3

2022-02-06 Thread BeneschTech LLC
So you guys put in a work around cmake as well... Ill be happy to compile the changes needed once I get linguist building. Just curious why the change? Is there a benefit to these tools? On Sun, Feb 6, 2022, 7:59 AM Volker Hilsheimer wrote: > > On 6 Feb 2022, at 15:37, BeneschTech LLC wrote: >

Re: [Interest] Build Issues with QT 6.2.3

2022-02-06 Thread Volker Hilsheimer
These are not work arounds, but documented features of ninja :P I’m not going to reopen the thread from three years ago when the choice of build system was made, but that the qmake build system was not sustainable, at the very least not for Qt itself, was fairly undisputed. Back in the days you

Re: [Interest] Build Issues with QT 6.2.3

2022-02-06 Thread BeneschTech LLC
Understood. Our application uses qmake and some spots it gets a little unwieldy especially when we have to run external tools to make dependencies, etc.. I can only imagine what qt itself is like to handle. We are a little behind version wise, so this is my first experience with 6. Again, QT itse

Re: [Interest] Build Issues with QT 6.2.3

2022-02-06 Thread Thorsten Glaser
On Sun, 6 Feb 2022, BeneschTech LLC wrote: > issues with third party code. Indulge us old guys though. We have reasons Fully agreed! Say, wasn’t there a way to make cmake and/or ninja generate Makefiles? Once there (in the one project I had to use cmake so far, Android NDK stuff, it did that) i

Re: [Interest] Build Issues with QT 6.2.3

2022-02-06 Thread Allan Sandfeld Jensen
On Sonntag, 6. Februar 2022 00:15:54 CET BeneschTech LLC wrote: > OS: Ubuntu 20.04 LTS > Compiler Suite: clang 15 (from git) > > In the webengine build, a file fails because of -Werror. Maybe we need to > take that off of the build flags? > Did you build with the warning-are-errors feature flag

Re: [Interest] Build Issues with QT 6.2.3

2022-02-06 Thread Michael Jackson
cmake -G "Unix Makefiles" -- Mike Jackson On 2/6/22, 10:56 AM, "Interest on behalf of Thorsten Glaser" wrote: On Sun, 6 Feb 2022, BeneschTech LLC wrote: > issues with third party code. Indulge us old guys though. We have reasons Fully agreed! Say, wasn’t there a way

Re: [Interest] Build Issues with QT 6.2.3

2022-02-07 Thread Thiago Macieira
On Sunday, 6 February 2022 07:44:10 PST BeneschTech LLC wrote: > Again, QT itself is great software. Was just hoping real thought was put > into switching tools instead of just doing what other people thought was > cool, and it sounds like thats the case so its all good. It was. Lots of threads f

Re: [Interest] Build Issues with QT 6.2.3

2022-02-07 Thread Thiago Macieira
On Sunday, 6 February 2022 06:37:10 PST BeneschTech LLC wrote: > 2 . Cmake does not store your last configuration command anywhere i can > find like autotools does. I've taken to creating a shell script called "config.status" that runs cmake with my options. It's the first thing I create when se