mirror of
https://github.com/crystalidea/qt-build-tools.git
synced 2024-11-22 19:00:04 +08:00
5.15.2: macdeployqt applied patch for QTBUG-85600 (macdeployqt not built as host_build)
This commit is contained in:
parent
75b1234a9c
commit
65c2e8b07b
@ -1,5 +1,8 @@
|
||||
option(host_build)
|
||||
CONFIG += force_bootstrap
|
||||
|
||||
SOURCES += main.cpp ../shared/shared.cpp
|
||||
QT = core
|
||||
LIBS += -framework CoreFoundation
|
||||
|
||||
load(qt_app)
|
||||
load(qt_tool)
|
@ -232,7 +232,9 @@ int main(int argc, char **argv)
|
||||
// Update deploymentInfo.deployedFrameworks - the QML imports
|
||||
// may have brought in extra frameworks as dependencies.
|
||||
deploymentInfo.deployedFrameworks += findAppFrameworkNames(appBundlePath);
|
||||
deploymentInfo.deployedFrameworks = deploymentInfo.deployedFrameworks.toSet().toList();
|
||||
QSet<QString> deployedFrameworks(deploymentInfo.deployedFrameworks.begin(),
|
||||
deploymentInfo.deployedFrameworks.end());
|
||||
deploymentInfo.deployedFrameworks = deployedFrameworks.values();
|
||||
}
|
||||
|
||||
if (plugins && !deploymentInfo.qtPath.isEmpty()) {
|
||||
|
@ -30,7 +30,6 @@
|
||||
#include <QStringList>
|
||||
#include <QDebug>
|
||||
#include <iostream>
|
||||
#include <QProcess>
|
||||
#include <QDir>
|
||||
#include <QRegExp>
|
||||
#include <QSet>
|
||||
@ -41,7 +40,6 @@
|
||||
#include <QJsonObject>
|
||||
#include <QJsonArray>
|
||||
#include <QJsonValue>
|
||||
#include <QRegularExpression>
|
||||
#include "shared.h"
|
||||
|
||||
#ifdef Q_OS_DARWIN
|
||||
@ -181,7 +179,7 @@ OtoolInfo findDependencyInfo(const QString &binaryPath)
|
||||
return info;
|
||||
}
|
||||
|
||||
static const QRegularExpression regexp(QStringLiteral(
|
||||
static const QRegExp regexp(QStringLiteral(
|
||||
"^\\t(.+) \\(compatibility version (\\d+\\.\\d+\\.\\d+), "
|
||||
"current version (\\d+\\.\\d+\\.\\d+)(, weak)?\\)$"));
|
||||
|
||||
@ -938,7 +936,7 @@ bool DeploymentInfo::containsModule(const QString &module, const QString &libInF
|
||||
return true;
|
||||
}
|
||||
// Check for dylib
|
||||
const QRegularExpression dylibRegExp(QLatin1String("libQt[0-9]+") + module +
|
||||
const QRegExp dylibRegExp(QLatin1String("libQt[0-9]+") + module +
|
||||
libInFix + QLatin1String(".[0-9]+.dylib"));
|
||||
return deployedFrameworks.filter(dylibRegExp).size() > 0;
|
||||
}
|
||||
@ -1498,10 +1496,10 @@ QSet<QString> codesignBundle(const QString &identity,
|
||||
|
||||
// Check if there are unsigned dependencies, sign these first.
|
||||
QStringList dependencies =
|
||||
getBinaryDependencies(rootBinariesPath, binary, additionalBinariesContainingRpaths).toSet()
|
||||
.subtract(signedBinaries)
|
||||
.subtract(pendingBinariesSet)
|
||||
.toList();
|
||||
getBinaryDependencies(rootBinariesPath, binary, additionalBinariesContainingRpaths);
|
||||
|
||||
QSet<QString> dependenciesSet(dependencies.begin(), dependencies.end());
|
||||
dependencies = dependenciesSet.subtract(signedBinaries).subtract(pendingBinariesSet).values();
|
||||
|
||||
if (!dependencies.isEmpty()) {
|
||||
pendingBinaries.push(binary);
|
||||
|
Loading…
Reference in New Issue
Block a user