Browse Source

Merge pull request #149 from bjorn/master

Added path of problematic binary when dependency could not be found
master
probonopd 7 years ago
committed by GitHub
parent
commit
74580fa63e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      tools/linuxdeployqt/shared.cpp

1
tools/linuxdeployqt/shared.cpp

@ -309,6 +309,7 @@ LddInfo findDependencyInfo(const QString &binaryPath)
// LogDebug() << "ldd outputLine:" << outputLine;
if ((outputLine.contains("not found")) && (qtDetectionComplete == 1)){
LogError() << "ldd outputLine:" << outputLine.replace("\t", "");
LogError() << "for binary:" << binaryPath;
LogError() << "Please ensure that all libraries can be found by ldd. Aborting.";
exit(1);
}

Loading…
Cancel
Save