Undefined reference to getaddrinfo

Isn’t it the same problem as here ?

http://programmingrants.blogspot.com/2009/09/tips-on-undefined-reference-to.html

Basically do not forget to link with Ws2_32.lib (the message is from the linker, so that’s should be the reason) but you seem to be doing that already.

… if you’re working with an old version of windows programming tools say to it you have a version higher than XP by putting #define _WIN32_WINNT 0x0501 before including headers (unlikely to still be necessary nowaday, but maybe).

The could be other simple problems. Normal (Unix) convention for libraries is to prepend them with lib. Henceforth, meaning for -lWS32_32 would be to search for a file whose name is libWS32_32.a. It is likely it does not find it because it’s missing the path to the directory containing the library. You could add a -L followed by the path to the correct directory. Alternatively you do not even need -l to link with a library, just putting the full path to the library (in this case the real name of the file as it appears on filesystem) should also work.

The problem can also be path related. For instance problems can occurs if path to library contains spaces. If this is so you can try putting you library files in a directory with a simpler name.

Please give use some feedback of your actual configuration (in which directory is the library file) and what you actually tried. You could also tries setting LIBS and LIBPATH environment variables (simplest way is probably to do that from a makefile).

Leave a Comment