Skip to content

Commit

Permalink
Clarify message, #340
Browse files Browse the repository at this point in the history
  • Loading branch information
probonopd committed Jan 8, 2019
1 parent 147fdf8 commit 22ba493
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tools/linuxdeployqt/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,12 @@ int main(int argc, char **argv)
const char *glcv = gnu_get_libc_version ();
if (strverscmp (glcv, "2.21") >= 0)
{
qInfo() << "Please run on a system no newer than the oldest still-supported Ubuntu LTS release.";
qInfo() << "This is so that the resulting bundle can run on all still-supported releases of Ubuntu.";
qInfo() << "ERROR: The host system is too new.";
qInfo() << "Please run on a system with a glibc version no newer than what comes with the oldest";
qInfo() << "still-supported mainstream distribution, which currently is glibc 2.20.";
qInfo() << "This is so that the resulting bundle will work on most still-supported Linux distributions.";
qInfo() << "For more information, please see";
qInfo() << "https://github.com/probonopd/linuxdeployqt/issues/340";
return 1;
}

Expand Down

0 comments on commit 22ba493

Please sign in to comment.