On Monday, 2 May 2022 02:22:17 PDT Ramakanth Kesireddy wrote:
> Can anyone let me know the minimal glibc version for building/running Qt
> 5.15.9 based application?
Whatever you used to build your Qt and your application with.
--
Thiago Macieira - thiago.macieira (AT) intel.com
Cloud Software
Thanks a lot, Hamish !
The link really helped, however, for me it was simpler than described in the
thread:
Hardened runtime was not the issue – I just need to add the key into my
entitlements file and this already did the job. At the end I signed this way:
codesign --options=runtime --entitle
Hi,
I don't know the minimum required glibc version of Qt. I recently compiled Qt
6.3.0 against glibc 2.26 (at least qtbase, qtdeclarative, qtwayland and a few
more repos) and it worked just fine. Likely it builds against even lower
versions of glibc as well. I suppose you'll have to test it yo
Hi,
I discovered that it does not behave always like that. It happens only
when painting very quickly many small QImages with transparent areas.
And I found a way to fix it, but this is just adding mystery.
Instead of
pnt->drawImage(etc);
I do
pnt.beginNativePainting();
pnt.endNativePainti
Hi,
Can anyone let me know the minimal glibc version for building/running Qt
5.15.9 based application?
Am trying to run Qt 5.15.9 based app on x86_64 ubuntu 18.04 which comes
with glibc 2.27 as it throws error like below:
version GLIBC_2.29 not found as required by QtApp.
Do I need to build gli