probonopd
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
0 deletions
-
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; |
|
|
|