I'm trying to compile and run a SHA256.c implementation in Eclipse CDT. I installed the plugin from this website: http://svn.codespot.com/a/eclipselabs.org/wascana/repo
Below is the main method from the program. When I try to build project, I get this error:
gcc -O0 -g3 -Wall -c -fmessage-length=0 -osrc\SHA256.o ..\src\SHA256.c
gcc -oSHHA.exe src\SHA256.o
d:/eclipse/mingw/bin/../lib/gcc/mingw32/4.4.1-dw2/../../../libmingw32.a(main.o):main.c:(.text+0xd2):
undefined reference to WinMain@16 collect2: ld returned 1 exit status
Build error occurred, build is stopped
The project which I created is new ->C Project->Hellow WOorld ANCI C project->next->next->Finish
int main(int argc, char *argv[]){
printf("\n");
ProcessVector(&vector1);
ProcessVector(&vector2);
return 0;
}
I have dowloaded above project from this site http://www.koders.com/cpp.
It's not a Windows application, it's a normal SHA256 algorithm.
I have also read the post on StackOverflow for this error but it did not supply the information I need. I have tried everything that was mentioned, but I'm still getting this error. Can anyone please help me out from this.
Thanks in advance.
mainfunction actually in the fileSHA256.c? – Joachim Pileborg Sep 12 '12 at 5:43WinMainas the entry point. Windows console apps usemainas the entry point. So you need to build the code as a console app, but Eclipse is trying to build it as a GUI app. I guess there's an option somewhere to select which you want, but I'm not familiar with Eclipse. – arx Sep 12 '12 at 15:35