I added under Settings->Build Settings->Compilers a new compiler and pointed to the 4.9.1 version and automatically it filled out the options.
Created a new console project and tried to build it:
Code: Select all
#include <stdio.h>
int main(int argc, char **argv)
{
printf("hello world\n");
return 0;
}
I checked my system parameters so that i don't have mingw in the path (conflict).C:\Windows\system32\cmd.exe /c "X:/MinGW/bin/mingw32-make.exe -j4 SHELL=cmd.exe -e -f Makefile"
"----------Building project:[ codelitehello - Debug ]----------"
mingw32-make.exe[1]: Entering directory 'X:/MyPrograms/codelitehello'
mingw32-make.exe[1]: *** [Debug/main.cpp.o.d] Error 1
mingw32-make.exe[1]: *** Waiting for unfinished jobs....
mingw32-make.exe: *** [All] Error 2
codelitehello.mk:96: recipe for target 'Debug/main.cpp.o.d' failed
mingw32-make.exe[1]: Leaving directory 'X:/MyPrograms/codelitehello'
Makefile:4: recipe for target 'All' failed
1 errors, 0 warnings
I can't find the root of the problem, searched codelite options but cannot figure what is wrong. Any help would be appreciated, thanks.
I attach