i write simple server script using winsock.h, compile it use gcc
gcc -o win win.cpp
output like:
undefined reference to socket....blablabla
undefined reference to bind,........
i hope anyone can post solution
thx..
You didn't specify any library that should be linked with your app.
i tried compile with
gcc -o win win.cpp -lwinsock
is it right ??
Quote from: igi on June 20, 2007, 10:15:20 AM
i tried compile with
gcc -o win win.cpp -lwinsock
is it right ??
Well, if it worked, then it would've been right.
Since you're using MinGW's w32api package instead of Microsoft's, though, you'll need to use "-lwsock32" instead. See the .a files in the "lib" subdirectory of your MinGW installation (remember -l stands for "lib").