对“hostGetByName”VxWorks 的未定义引用

undefined reference to `hostGetByName' VxWorks

我正在尝试编译一个简单的 vxworks RTP 应用程序。我收到对“hostGetByName”的未定义引用。根据文档,此功能应该在用户 space 中可用,并且我在 VSB 中包含了必要的层“IPNET_USRSPACE”,但仍然出现错误。我缺少什么想法?

    /* includes */

#include <stdio.h>
#include <hostLib.h>
#include <sockLib.h>
#include <arpa/inet.h>
#include <ctype.h>
#include <fcntl.h>
#include <ifaddrs.h>
#include <netdb.h>
#include <netinet/in.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <unistd.h>

int main (
    int    argc,    /* number of arguments */
    char * argv[]   /* array of arguments */
    ) {
    
    
    
    char *inGroup;
    int host;
    
    host = hostGetByName(inGroup);

    return 0;
}

undefined reference to `hostGetByName'

看起来链接器没有选择网络库。

-lnet 会完成工作。