Help with Debugger and getting started with CodeLite

CodeLite installation/troubleshooting forum
LeeD
CodeLite Curious
Posts: 1
Joined: Sat Sep 20, 2008 5:20 am
Contact:

Help with Debugger and getting started with CodeLite

Post by LeeD »

I am new to programming and CodeLite - I received the following message when I tried to run the debugger.
#include <stdio.h>

int main(int argc, char **argv)
{
int i=0;

for(int i=0; i<10; i++){
printf("hello world - %d\n", i);
}

return 0;
}
Failed to initialize debugger: C:\Program Files\CodeLite\gdb-6.8-mingw-3.tar.bz2

Building: "mingw32-make" -j 2 -f "HelloWorldFromLee_wsp.mk" type=Debug
Failed to start build process, command: "mingw32-make" -j 2 -f "HelloWorldFromLee_wsp.mk" type=Debug, process terminated with exit code: 0
User avatar
eranif
CodeLite Plugin
Posts: 6372
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Help with Debugger and getting started with CodeLite

Post by eranif »

Please read and follow the instructions in this post:

http://codelite.org/forum/viewtopic.php?f=3&t=138

Eran
Make sure you have read the HOW TO POST thread
Post Reply