Update main.cpp

This commit is contained in:
probonopd
2019-01-13 15:18:51 +00:00
committed by GitHub
parent 2ce6e0d2ce
commit 4123a34a39
+5
View File
@@ -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;