Browse Source

Update main.cpp

master
probonopd 6 years ago
committed by GitHub
parent
commit
4123a34a39
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      tools/linuxdeployqt/main.cpp

5
tools/linuxdeployqt/main.cpp

@ -57,6 +57,7 @@ int main(int argc, char **argv)
bool appimage = false; bool appimage = false;
extern bool runStripEnabled; extern bool runStripEnabled;
extern bool bundleAllButCoreLibs; extern bool bundleAllButCoreLibs;
extern bool bundleEverything;
extern bool fhsLikeMode; extern bool fhsLikeMode;
extern QString fhsPrefix; extern QString fhsPrefix;
extern QStringList librarySearchPath; extern QStringList librarySearchPath;
@ -98,6 +99,10 @@ int main(int argc, char **argv)
LogDebug() << "Argument found:" << argument; LogDebug() << "Argument found:" << argument;
appimage = true; appimage = true;
bundleAllButCoreLibs = true; bundleAllButCoreLibs = true;
} else if (argument == QByteArray("-unsupported-bundle-everything")) {
LogDebug() << "Argument found:" << argument;
skipGlibcCheck = true;
bundleEverything = true;
} else if (argument == QByteArray("-no-strip")) { } else if (argument == QByteArray("-no-strip")) {
LogDebug() << "Argument found:" << argument; LogDebug() << "Argument found:" << argument;
runStripEnabled = false; runStripEnabled = false;

Loading…
Cancel
Save