[Bug 58999] debugger will not start

Gregory Olds gcolds at comcast.net
Mon May 26 22:25:08 UTC 2003


------- 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=58999     




------- Additional Comments From gcolds at comcast.net  2003-05-26 22:23 -------
I also am having the same problem with Alpha 4. However, when I downloaded CVS 
Head 5-25-03, I created a simple helo world project with the appwizard.  I added 
some lines of code to it and set a break point at the cout statement.  The 
debugger did start and it stoped execution at the breakpoint at the cout 
statement.  I tried to run to the next line and the debugger didn't stop until in 
reached the closing brace of the program.  Below is the code I used and below the 
code is the debugger output from the GDB window. 
 
-Gregory 
 
#include <iostream> 
#include <cstdlib> 
 
using namespace std; 
 
int main(int argc, char *argv[]) 
{ 
  cout << "Hello, world!" << endl; 
  int a; 
  a = 5; 
  a++; 
  a = a*8; 
  return EXIT_SUCCESS; 
} 
 
 
Debugger Output: 
 
#include <iostream> 
#include <cstdlib> 
 
using namespace std; 
 
int main(int argc, char *argv[]) 
{ 
  cout << "Hello, world!" << endl; 
  int a; 
  a = 5; 
  a++; 
  a = a*8; 
  return EXIT_SUCCESS; 
}




More information about the KDevelop-devel mailing list