Great to hear that! We only tested Puffer on Ubuntu 18.04, and based on the feedback we received, Puffer doesn't compile on Ubuntu 16.04 or 20.04 without making some code changes (unfortunately).
Thanks for the reply! The issues seemed to be specific to Ubuntu 16.04. Following the steps for Ubuntu 18.04 worked like a charm.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or unsubscribe.![]()
=== Original Questions ===
Hello, I was trying to run the set up and was stuck in the same step. I got these three errors:
- socket.cc: In member function ‘TCPInfo TCPSocket::get_tcp_info() const’:
socket.cc:245:19: error: ‘struct tcp_info’ has no member named ‘tcpi_min_rtt’; did you mean ‘tcpi_rcv_rtt’?
ret.min_rtt = x.tcpi_min_rtt;
^~~~~~~~~~~~
tcpi_rcv_rtt
socket.cc:247:25: error: ‘struct tcp_info’ has no member named ‘tcpi_delivery_rate’; did you mean ‘tcpi_pacing_rate’?
ret.delivery_rate = x.tcpi_delivery_rate;
- opus-encoder.cc:315:20: error: ‘AVStream {aka struct AVStream}’ has no member named ‘codecpar’; did you mean ‘codec’?
audio_stream_->codecpar->extradata_size = 19;
- /usr/bin/ld: warning: libmklml_intel.so, needed by ../../third_party/libtorch/lib/libcaffe2.so, not found (try using -rpath or -rpath-link)
/usr/bin/ld: warning: libiomp5.so, needed by ../../third_party/libtorch/lib/libcaffe2.so, not found (try using -rpath or -rpath-link)
Any help would be appreciated!