From kdevelop-bugs Wed Aug 31 10:07:05 2005 From: kdevelop-bugs-admin () barney ! cs ! uni-potsdam ! de Date: Wed, 31 Aug 2005 10:07:05 +0000 To: kdevelop-bugs Subject: [Bug 111001] option for enabling .gdbinit Message-Id: <20050831100705.27353.qmail () ktown ! kde ! org> X-MARC-Message: https://marc.info/?l=kdevelop-bugs&m=118306941507848 ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=111001 ghost cs msu su changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ghost cs msu su 2005-08-31 12:07 ------- SVN commit 455356 by vprus: Do not pass -nx (ignore .gdbinit) option to gdb. Talked with jbb about it, and decided this should not cause any problems, because all kdevelop-specific settings are applied after loading .gdbinit. BUG: 111001 M +4 -4 gdbcontroller.cpp --- branches/KDE/3.5/kdevelop/languages/cpp/debugger/gdbcontroller.cpp #455355:455356 @ -1267,16 +1267,16 @ if (!shell.isEmpty()) { *dbgProcess_ << "/bin/sh" << "-c" << shell + " " + gdb - + " " + application + " -fullname -nx -quiet"; + + " " + application + " -fullname -quiet"; emit gdbStdout(QString( "/bin/sh -c " + shell + " " + gdb - + " " + application + " -fullname -nx -quiet" ).latin1()); + + " " + application + " -fullname -quiet" ).latin1()); } else { *dbgProcess_ << gdb << application - << "-fullname" << "-nx" << "-quiet"; + << "-fullname" << "-quiet"; emit gdbStdout(QString( gdb + " " + application + - " -fullname -nx -quiet" ).latin1()); + " -fullname -quiet" ).latin1()); } if (!dbgProcess_->start( KProcess::NotifyOnExit,