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!

link|improve this question
It sounds like part of your program has been built as a Win16 application, which is unlikely to be supported on modern tools and even less likely to be what you wanted... – R.. Mar 12 '11 at 0:59
@R: No, the @16 part is part of the function decoration and has nothing to do with 16bit windows. – Anders Mar 12 '11 at 3:55
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.