forked from qt-creator/qt-creator
Debugger: Get rid of DebuggerRunParameters::skipExecutableValidation
It was only set, but never read. Task-number: QTCREATORBUG-29168 Change-Id: I441a0c4d2a13a09a938a072b286e1a940ed72ed8 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -127,7 +127,6 @@ public:
|
||||
rp.setSolibSearchPath(solibSearchPath);
|
||||
qCDebug(androidDebugSupportLog).noquote() << "SoLibSearchPath: " << solibSearchPath;
|
||||
rp.setSymbolFile(androidAppProcessDir(target).pathAppended("app_process"));
|
||||
setSkipExecutableValidation(true);
|
||||
rp.setUseExtendedRemote(true);
|
||||
QString devicePreferredAbi = apkDevicePreferredAbi(target);
|
||||
setAbi(androidAbi2Abi(devicePreferredAbi));
|
||||
|
@@ -144,8 +144,6 @@ public:
|
||||
void setUseCtrlCStub(bool on) { m_useCtrlCStub = on; }
|
||||
bool useCtrlCStub() const { return m_useCtrlCStub; }
|
||||
|
||||
// Used by Android to avoid false positives on warnOnRelease
|
||||
bool skipExecutableValidation = false;
|
||||
bool useTargetAsync = false;
|
||||
Utils::FilePaths additionalSearchDirectories;
|
||||
|
||||
|
@@ -123,11 +123,6 @@ void DebuggerRunTool::setContinueAfterAttach(bool on)
|
||||
m_runParameters.continueAfterAttach = on;
|
||||
}
|
||||
|
||||
void DebuggerRunTool::setSkipExecutableValidation(bool on)
|
||||
{
|
||||
m_runParameters.skipExecutableValidation = on;
|
||||
}
|
||||
|
||||
void DebuggerRunTool::setBreakOnMain(bool on)
|
||||
{
|
||||
m_runParameters.breakOnMain = on;
|
||||
|
@@ -65,7 +65,6 @@ public:
|
||||
void addSearchDirectory(const Utils::FilePath &dir);
|
||||
|
||||
void setUseTargetAsync(bool on);
|
||||
void setSkipExecutableValidation(bool on);
|
||||
|
||||
void setIosPlatform(const QString &platform);
|
||||
void setDeviceSymbolsRoot(const QString &deviceSymbolsRoot);
|
||||
|
Reference in New Issue
Block a user