Today, I wanted to change my makefile around because I was getting warning errors such as "Warning: resolving _send@16 by linking to _send"(or something like that!). I was able to fix all those errors, but another MAJOR got in my way of getting things to compile again.
I'm getting the following error:c:/mingw/bin/../lib/gcc/mingw32/4.5.0/../../../libmingw32.a(main.o):main.c:(.text+0xd2): undefined reference to 'WinMain@16'
I have a main defined like this:
int main(int argc, char *argv[])
{
/*do stuff*/
return 0;
}
Everything was compiling just fine until I decided to get rid of the warnings, and now I can't compile at all. Here is my compile line inside the makefile:
mingw32-make -f makePCIDxApp all
gcc -mconsole -mthreads -o PCIDxApp.exe src/PCIDxApp.o src/TelemetryClbk.o src/PayloadDebugMessages.o -L"c:/Acromag/PCISW_API_WIN/redist/" -l PCIDX -lws2_32 -lkernel32
I've taken the -mconsole out, and put in -Wl,subsystems:console and that doesn't work. I've even tried -W1,subsystems:windows and that didn't work. Please help! I'm pulling my hair...literally!