Eclipse 中的编译时错误:"undefined reference to `sctp_recvmsg'"
compile time error in Eclipse: "undefined reference to `sctp_recvmsg'"
如何在 Linux ubuntu 中使用 Eclipse 构建 SCTP client.c 和 server.c 示例代码?
在终端中我可以使用
构建
gcc -Wall sctpclient.c -lsctp -o sctpclient
但在 Eclipse 中我收到了 "undefined reference to `sctp_recvmsg'"。
我不知道在 Eclipse 中添加“-lsctp”开关 IDE。
我在 Eclipse 中找到了正确的路径 IDE,您必须将 -lsctp 参数添加到以下路径:
Project properties->C/C++ Build->Setting->GCC C Linker->Miscellaneous->Other objects
并且在 NetBeans IDE 中将参数添加到:
Project properties->Build->Linker->Additional Options
如何在 Linux ubuntu 中使用 Eclipse 构建 SCTP client.c 和 server.c 示例代码?
在终端中我可以使用
构建gcc -Wall sctpclient.c -lsctp -o sctpclient
但在 Eclipse 中我收到了 "undefined reference to `sctp_recvmsg'"。
我不知道在 Eclipse 中添加“-lsctp”开关 IDE。
我在 Eclipse 中找到了正确的路径 IDE,您必须将 -lsctp 参数添加到以下路径:
Project properties->C/C++ Build->Setting->GCC C Linker->Miscellaneous->Other objects
并且在 NetBeans IDE 中将参数添加到:
Project properties->Build->Linker->Additional Options