From 32f50a2c1c3c7e2d75542729d5b9a4523ee6a20c Mon Sep 17 00:00:00 2001 From: "Bruce A. Mah" Date: Thu, 17 Apr 2014 08:48:28 -0700 Subject: [PATCH] Add a note about (maybe) needing to do ldconfig after make install on Ubuntu. This is a workaround for Issue #153. --- README.md | 4 ++++ docs/dev.rst | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/README.md b/README.md index 16082e522..f85c4407b 100644 --- a/README.md +++ b/README.md @@ -145,3 +145,7 @@ doubles the value you pass in. (You can see this using iperf3's debug flag). But then the CWND does not actually ramp up to the doubled value, but only to about 75% of the doubled value. This appears to be by design. +* On some platforms (observed on at least one version of Ubuntu +Linux), it might be necessary to invoke "ldconfig" manually after +doing a "make install" before the iperf3 executable can find its +shared library. (Issue #153) diff --git a/docs/dev.rst b/docs/dev.rst index 8199a2908..4d5c3b805 100644 --- a/docs/dev.rst +++ b/docs/dev.rst @@ -105,6 +105,11 @@ to solve the problem are currently being made: value. Some part of this behavior is documented in the tcp(7) manual page. (Issue #145) +* On some platforms (observed on at least one version of Ubuntu + Linux), it might be necessary to invoke ``ldconfig`` manually after + doing a ``make install`` before the ``iperf3`` executable can find + its shared library. (Issue #153) + There are, of course, many other open and closed issues in the issue tracker.