forked from qt-creator/qt-creator
Android: Fix app_process not being copied for 32bit cpu abi
Task-number: QTCREATORBUG-20084 Change-Id: Id06cfb6250030851211c7c170f8d0c8b0491b3d8 Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: hjk <hjk@qt.io> Reviewed-by: BogDan Vatra <bogdan@kdab.com>
This commit is contained in:
@@ -158,8 +158,8 @@ bool AndroidDeployQtStep::init(QList<const BuildStep *> &earlierSteps)
|
||||
m_filesToPull["/system/bin/app_process32"] = buildDir + "app_process";
|
||||
}
|
||||
} else {
|
||||
m_appProcessBinaries << QLatin1String("/system/bin/app_process32")
|
||||
<< QLatin1String("/system/bin/app_process");
|
||||
m_filesToPull["/system/bin/app_process32"] = buildDir + "app_process";
|
||||
m_filesToPull["/system/bin/app_process"] = buildDir + "app_process";
|
||||
}
|
||||
|
||||
m_filesToPull["/system/bin/" + linkerName] = buildDir + linkerName;
|
||||
|
||||
Reference in New Issue
Block a user