Page 1 of 1

Help with Debugger and getting started with CodeLite

Posted: Sat Sep 20, 2008 5:25 am
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

Re: Help with Debugger and getting started with CodeLite

Posted: Sat Sep 20, 2008 9:28 am
by eranif
Please read and follow the instructions in this post:

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

Eran