Skip to content

Commit

Permalink
Remove scary warning from bundleEverything
Browse files Browse the repository at this point in the history
  • Loading branch information
probonopd committed Aug 28, 2023
1 parent de40d14 commit e83eeb7
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions tools/linuxdeployqt/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,13 @@ int main(int argc, char **argv)
// https://github.com/AppImage/appimage.github.io/search?q=GLIBC&unscoped_q=GLIBC&type=Issues
const char *glcv = gnu_get_libc_version ();
if(skipGlibcCheck) {
qInfo() << "WARNING: Not checking glibc on the host system.";
qInfo() << " The resulting AppDir or AppImage may not run on older systems.";
qInfo() << " This mode is unsupported and discouraged.";
qInfo() << " For more information, please see";
qInfo() << " https://github.com/probonopd/linuxdeployqt/issues/340";
if(! bundleEverything) {
qInfo() << "WARNING: Not checking glibc on the host system.";
qInfo() << " The resulting AppDir or AppImage may not run on older systems.";
qInfo() << " This mode is unsupported and discouraged.";
qInfo() << " For more information, please see";
qInfo() << " https://github.com/probonopd/linuxdeployqt/issues/340";
}
} else {
// openSUSE Leap 15.0 uses glibc 2.26 and is used on OBS
// Ubuntu Xenial Xerus (16.04) uses glibc 2.23
Expand Down

0 comments on commit e83eeb7

Please sign in to comment.