I have sample program:

#include <winsock2.h>
#include <ws2tcpip.h>
#include <stdio.h>

// link with Ws2_32.lib
#pragma comment (lib, "Ws2_32.lib")

//...

if ((err = getaddrinfo(hostname, service, &hints, &res)) != 0)
    {
        printf("error %d\n", err);
        return 1;
    }

which I try to compile on my 64bit Windows 7:

gcc -O0 -g3 -Wall -c -fmessage-length=0 -o src\sample.o ..\src\sample.c
..\src\sample.c: In function 'main':
..\src\sample.c:26:2: warning: implicit declaration of function 'getaddrinfo' [-Wimplicit-function-declaration]
gcc -o sample.exe src\sample.o -lws2_32
src\sample.o: In function `main':
C:\workspace\sample\Debug/../src/sample.c:26: undefined reference to `getaddrinfo'
collect2: ld returned 1 exit status

I get an error. How to make this work ?

link|improve this question

76% accept rate
1  
It looks like gcc's header is out of date. You might try #include <wspiapi.h>. That's what you did with older versions of Microsoft's compiler. – Jerry Coffin Feb 16 at 20:53
feedback

1 Answer

up vote 0 down vote accepted

If you're not targeting Windows 2000 or older, settings WINVER to 0x501 should let your code build correctly.

gcc -DWINVER=0x501 ...

(Or use a #define before you include any Windows header in your source.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.