Replies: 1 comment
-
Or optionally, what is the last version of Qt with precompiled binaries that would be compatible? I'd hate to have to regress my Qt app to use an older version of Qt (I wrote it for QT 6.8), but at this point I'm willing to try most anything to get this running on a Pi. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have used AQT to successfully install Qt on a Raspberry Pi running the latest available OS (Debian 12 Bookworm). The issue is that various binaries, such as
qmlimportscanner
, have been built with a newer GCC and glibc than what is available on Raspberry Pi. It was built against GLIBCXX_3.4.32 and GLIBC_2.38, where the Pi has a maximum of GLIBCXX_3.4.30 and GLIBC_2.36..Are there precompiled Qt binaries that are compatible with the Raspberry Pi specifically? The official Qt Setup program fails on the Pi (qmake crashes) and this has been an issue for a few months now. I've attempted to build Qt myself but have run into myriad issues with that as well. So precompiled binaries seem to be my only option at this time.
Beta Was this translation helpful? Give feedback.
All reactions