Search code examples
csocketswinsocktcc

Tiny C Compiler (TCC) and winsock?


Can I use a socket library from TCC? I can't find any reference to winsock or sys/socket.h in the include directory.

If i remember correctly, winsock was part of the windows platform SDK (?) If so can I link that with TCC?


Solution

  • According to Tinycc-devel mailing list

    you should give this a try:

    tiny_impdef winsock.dll -o winsock.def
    tcc yourcode.c  winsock.def -o yourcode.exe