forked from qt-creator/qt-creator
Fix debugging on Android arm64/x86_64
On Android 64, there is no lib/ symlink anymore, so we need to upload gdbserver from QtCreator. Change-Id: Ib6f6d9b623dc61b72dd434ce1b3b409e880bdeaa Reviewed-by: Vikas Pachdha <vikas.pachdha@qt.io>
This commit is contained in:
@@ -2529,7 +2529,7 @@ Context CppDebuggerEngine::languageContext() const
|
||||
void CppDebuggerEngine::validateExecutable()
|
||||
{
|
||||
DebuggerRunParameters &rp = mutableRunParameters();
|
||||
const bool warnOnRelease = boolSetting(WarnOnReleaseBuilds);
|
||||
const bool warnOnRelease = boolSetting(WarnOnReleaseBuilds) && rp.toolChainAbi.osFlavor() != Abi::AndroidLinuxFlavor;
|
||||
bool warnOnInappropriateDebugger = false;
|
||||
QString detailedWarning;
|
||||
switch (rp.toolChainAbi.binaryFormat()) {
|
||||
|
||||
Reference in New Issue
Block a user