我遵循这个PJLIB(https://trac.pjsip.org/repos/wiki/Getting-Started/Autoconf)。但我还是得不到这个,总是提供未定义的参考,任何人都可以请看一下。
Stackoverlow源代码被破坏请从中找到 这里有详细信息:http://gist.github.com/5765529
[sun@example mysip]$ gcc myapp.c
/tmp/ccEKxwjG.o: In function `main':
myapp.c:(.text+0xa): undefined reference to `pjsua_create'
collect2: ld returned 1 exit status
谢谢
答案 0 :(得分:1)
您没有与图书馆链接。你需要这样的东西:
gcc myapp.c -lpjlib
但确切地说你需要我不知道 - 它将在图书馆的文档中描述。