当前位置: 技术问答>linux和unix
sco unix下socket编程的问题,请大家帮忙
来源: 互联网 发布时间:2015-03-07
本文导语: 我用c写有关socket的程序 包含了#include 在程序里调用listenfd=socket(AF_INET,SOCK_STREAM,0); 编译时报错: undefined first referenced symbol in file socke...
我用c写有关socket的程序
包含了#include
在程序里调用listenfd=socket(AF_INET,SOCK_STREAM,0);
编译时报错:
undefined first referenced
symbol in file
socket soc1.o
i386ld fatal: Symbol referencing errors. No output written to a.out
似乎不认socket这个函数 怎么回事呢?
包含了#include
在程序里调用listenfd=socket(AF_INET,SOCK_STREAM,0);
编译时报错:
undefined first referenced
symbol in file
socket soc1.o
i386ld fatal: Symbol referencing errors. No output written to a.out
似乎不认socket这个函数 怎么回事呢?
|
在编译的时候要加-lsocket
例如:
cc -o test test.c -lsocket
例如:
cc -o test test.c -lsocket