Skip to content

Commit a147128

Browse files
committed
allow Jammy Jellyfish builds
Focal Fossa support ends on May 31st
1 parent 0448055 commit a147128

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

tools/linuxdeployqt/main.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,11 @@ int main(int argc, char **argv)
211211
// Ubuntu Xenial Xerus (16.04) uses glibc 2.23
212212
// Ubuntu Bionic Beaver (18.04) uses glibc 2.27
213213
// Ubuntu Focal Fossa (20.04) uses glibc 2.31
214-
if (strverscmp (glcv, "2.32") >= 0) {
214+
// Ubuntu Jammy Jellyfish (22.04) uses glibc 2.35
215+
if (strverscmp (glcv, "2.36") >= 0) {
215216
qInfo() << "ERROR: The host system is too new.";
216217
qInfo() << "Please run on a system with a glibc version no newer than what comes with the oldest";
217-
qInfo() << "currently supported mainstream distribution (Ubuntu Focal Fossa), which is glibc 2.31.";
218+
qInfo() << "currently supported mainstream distribution (Ubuntu Jammy Jellyfish), which is glibc 2.35.";
218219
qInfo() << "This is so that the resulting bundle will work on most still-supported Linux distributions.";
219220
qInfo() << "For more information, please see";
220221
qInfo() << "https://github.com/probonopd/linuxdeployqt/issues/340";

0 commit comments

Comments
 (0)