User forums > Using Code::Blocks

compile winsock

(1/1)

igi:
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..

Biplab:
You didn't specify any library that should be linked with your app.

igi:
i tried compile with
gcc -o win win.cpp -lwinsock

is it right ??

TDragon:

--- Quote from: igi on June 20, 2007, 10:15:20 am ---i tried compile with
gcc -o win win.cpp -lwinsock

is it right ??

--- End quote ---
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").

Navigation

[0] Message Index

Go to full version