我正在使用本教程>> SIPp安装教程
我已经到了这一步。
./build.sh --with-pcap --with-sctp --with-openssl
但这是我遇到的错误。
CMake Error: The source directory "/home/ubuntu/sipp/--with-openssl" does not exist.
Specify --help for usage, or press the help button on the CMake GUI.
有人能帮我安装和测试SIPp吗?我正在使用VMWARE,但稍后我将在Ubuntu服务器上试用。提前谢谢。
发布于 2020-05-03 11:32:10
看起来新的build.sh不像以前那样支持相同的标志(-带有pcap带有-openssl)标志。
if test "$*" = "--none"; then
cmake . -DUSE_GSL=
elif test "$*" = "--common"; then
cmake . -DUSE_GSL=1 -DUSE_PCAP=1 -DUSE_SSL= -DUSE_SCTP=
elif test "$*" = "--full"; then
cmake . -DUSE_GSL=1 -DUSE_PCAP=1 -DUSE_SSL=1 -DUSE_SCTP=1
else
cmake . "$@"
fi
对于pcap和ssl支持,可以使用:
./build.sh --full
对于,您可以使用:
./build.sh --common
https://askubuntu.com/questions/1233586
复制相似问题