1

当我尝试在 Blackberry 10 IDE 中编译 pjsip 库时出现以下错误:

libpj-i486-pc-nto-qnx8.0.0.a(sock_bsd.o): undefined reference to symbol 'send@@libsocket.so.2'

'send@@libsocket.so.2' is defined in DSO /home/f3795594/bbndk/target_10_0_9_386/qnx6/x86/lib/libsocket.so.3 so try adding it to the linker command line

有没有人遇到过这个错误?我知道这与 libsocket 库有关,但不知道从哪里开始。

谢谢

4

1 回答 1

1

简单插入链接过程:

添加以下库:

LIBS += /Applications/bbndk/target_10_0_9_386/qnx6/x86/lib/libsocket.so.3

我有限的 c 编译知识妨碍了我。

于 2012-11-15T14:15:50.050 回答