From 4123a34a39342b46f036188b9d888a7ff3bafd67 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 13 Jan 2019 15:18:51 +0000 Subject: [PATCH] Update main.cpp --- tools/linuxdeployqt/main.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/linuxdeployqt/main.cpp b/tools/linuxdeployqt/main.cpp index d74cb06..6e3d43f 100644 --- a/tools/linuxdeployqt/main.cpp +++ b/tools/linuxdeployqt/main.cpp @@ -57,6 +57,7 @@ int main(int argc, char **argv) bool appimage = false; extern bool runStripEnabled; extern bool bundleAllButCoreLibs; + extern bool bundleEverything; extern bool fhsLikeMode; extern QString fhsPrefix; extern QStringList librarySearchPath; @@ -98,6 +99,10 @@ int main(int argc, char **argv) LogDebug() << "Argument found:" << argument; appimage = true; bundleAllButCoreLibs = true; + } else if (argument == QByteArray("-unsupported-bundle-everything")) { + LogDebug() << "Argument found:" << argument; + skipGlibcCheck = true; + bundleEverything = true; } else if (argument == QByteArray("-no-strip")) { LogDebug() << "Argument found:" << argument; runStripEnabled = false;