We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6b42aa commit ba1346eCopy full SHA for ba1346e
src/shared.cpp
@@ -277,7 +277,13 @@ LddInfo Deploy::findDependencyInfo(const QString &binaryPath)
277
if (outputLine.contains("not found")){
278
LogError() << "ldd outputLine:" << outputLine.replace("\t", "");
279
LogError() << "Please ensure that all libraries can be found by ldd. Aborting.";
280
- exit(1);
+
281
+ /* FIXME: Can't continue the deploy process because exiting, making
282
+ * the app crash.
283
+ * This situation must be handled in a different way, or simply
284
+ * ignore those "not found" lines.
285
+ */
286
+ // exit(1);
287
}
288
289
0 commit comments