Hi,

I am a new CYGWIN user.

I actually tried to compile and link a C/C++ program using the 'w32api',
more exactly, the '/lib/w32api/libws2_32.a' library, with the following
command:

            $gcc   -o myprogram   -lws2_32    -c myprogram.c

But, I always got the error messages from the 'ld' linker dynamic, such as:

    -         "Undefined reference to '[EMAIL PROTECTED]'"
    -         "Undefined reference to '[EMAIL PROTECTED]'"
    -         "Undefined reference to '[EMAIL PROTECTED]'"
    -         "Undefined reference to '[EMAIL PROTECTED]'"
    -         "Undefined reference to '[EMAIL PROTECTED]'"
    -         etc...

    "collect2: ld returned 1 exit status"

This means that the linker dynamic 'ld' is unable to find and open the
corresponding 'libws2_32.a' library file.

I've also tried several other solutions, such as:

            $ gcc  -o myprogram   -L  /usr/lib   -lws2_32   -c myprogram.c

            or

            $ gcc  -o myprogram    -l /usr/lib/w32api/libws2_32.a   -c
myprogram.c

With these solutions, I've got the error message from 'ld' like this:

    "Cannot find the -l/usr/lib/w32api/libws2_32.a"
    "collect2: ld returned 1 exit status"

Someone can help me to resolve this problem

Thanks,




--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

Reply via email to