-
-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Evaluate adding linuxdeployqt #16
Comments
It is to be noted that linuxdeployqt technically does not support 18.04 until 2021, which is when 16.04 LTS no longer is supported.
The oldest supported LTS release is currently 16.04. They have however added a flag (-unsupported-allow-new-glibc) to allow the program to run with newer glibc version used on 18.04. I'm not quite sure where the limitation lies, or if this was implemented just due to "best practice" reasons: "Build on old systems, run on newer systems" Another possibility would be to use linuxdeploy with linuxdeploy-plugin-qt instead (as mentioned in Issue # 5), I however havent tried that if it is the case not supporting 18.04 aswell. |
https://github.com/linuxdeploy/linuxdeploy + https://github.com/linuxdeploy/linuxdeploy-plugin-qt work great on Ubuntu 18.04. To ship
and then package things like
|
It would also be nice to bundle linuxdeployqt with the Docker images. Linuxdeployqt also requires patchelf:
curl -sLO https://ftp.fau.de/debian/pool/main/p/patchelf/patchelf_0.8-2_amd64.deb
dpkg -i patchelf_0.8-2_amd64.deb
Newer patchelf versions apparantly cripples libQt5Core; NixOS/patchelf#124
Building linuxdeployqt
git clone https://github.com/probonopd/linuxdeployqt.git
cd linuxdeployqt && qmake && make && make install
Originally posted by @somlioy in #5 (comment)
The text was updated successfully, but these errors were encountered: