Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm Sender: cygwin-owner AT sourceware DOT cygnus DOT com Delivered-To: mailing list cygwin AT sourceware DOT cygnus DOT com Message-ID: From: "THORMODSEN,ARNE D (HP-Corvallis,ex1)" To: cygwin AT sourceware DOT cygnus DOT com Subject: new user question - Cygwin and Mingw32 compatibility? Date: Tue, 9 Mar 1999 13:40:45 -0800 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain; charset="iso-8859-1" This is a more compact version of a question I sent out awhile back. It there some basic incompatibility between using windows sockets via the cygwin includes and console IO via mingw32? The small example program below will compile with gcc, linking with wsock32 and msvcrt, but core dumps with a STATUS_STACK_OVERFLOW when the dlls are loading, before it even runs. I've found several hints as to what might be the problem in the mail archives, but nothing specific to this. A cygcheck on the binary shows both msvcrt.dll and wsock32.dll, which makes sense. But by trial and error I've found that these guys seem to collide if both are loaded. Is this simply a basic incompatibility, or what? Thanks much, --arne Arne Thormodsen // donoth.c // // Simplest case for error // Does nothing #define Win32_Winsock #include #include #include #include main(argc,argv) int argc; char *argv[]; { WSADATA *data; int i,j; data=malloc(sizeof(WSADATA)); i = WSAStartup(MAKEWORD(1,1),data); j=_kbhit(); WSACleanup(); free(data); } -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com