![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| how to call c executable inside c program?? | zedex | High Level Programming | 9 | 05-15-2009 12:58 PM |
| What's The Easiest Route To Creating A Unix Executable File for Terminal? | unimachead | OS X (Apple) | 10 | 11-03-2008 12:40 PM |
| creating executable for every C file | compbug | UNIX for Dummies Questions & Answers | 7 | 09-30-2007 05:03 PM |
| launch an executable from a C++ program | nadiamihu | High Level Programming | 2 | 11-03-2006 05:59 AM |
| Creating a client handle in RPC | pic | High Level Programming | 1 | 05-02-2006 11:05 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
problem in creating executable for a client program
Hi,
I am trying to run simple client server c program in unix.At the compling stage server is creating an executable but the client is not. below is the link to the source codes: http://www.cs.rpi.edu/courses/sysprog/sockets/server.c http://www.cs.rpi.edu/courses/sysprog/sockets/client.c I am getting following message client.c: In function `main': client.c:39: warning: passing arg 2 of `connect' from incompatible pointer type client.c:53:2: warning: no newline at end of file Undefined first referenced symbol in file gethostbyname /var/tmp//ccgXDT5X.o (symbol belongs to implicit dependency /usr/lib/libnsl.so.1) ld: fatal: Symbol referencing errors. No output written to ss1 collect2: ld returned 1 exit status Can any one solve this? |
|
||||
|
First off this looks like homework - which is not allowed on the forums.
Second, you have a linker error. This means that the command you used to compile the code either could not find the correct library (a .so file or a .o file or a .a file), or the library does not exist on your machine, or a library is old and doesn't have the symbol (another name for a function) in it. |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|