diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index 8572cbfa893b05b739c03b79830b83fb5021f00e..187381ac6ee661012500deb01d83c2d0269bfd77 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -3889,10 +3889,8 @@ void GdbEngine::tryLoadDebuggingHelpers() postCommand(_("call (void)dlopen(\"") + GdbMi::escapeCString(lib) + _("\", " STRINGIFY(RTLD_NOW) ")"), CB(handleDebuggingHelperSetup)); //postCommand(_("sharedlibrary ") + dotEscape(lib)); - m_debuggingHelperState = DebuggingHelperLoadTried; #else //postCommand(_("p dlopen")); - QString flag = QString::number(RTLD_NOW); postCommand(_("sharedlibrary libc")); // for malloc postCommand(_("sharedlibrary libdl")); // for dlopen postCommand(_("call (void*)dlopen(\"") + GdbMi::escapeCString(lib) + _("\", " STRINGIFY(RTLD_NOW) ")"),