You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compile it with the triplet x64-linux-dynamic and run your program. At runtime, you'll see an error looking like error while loading shared libraries: libboost_random.so.1.79.0: cannot open shared object file: No such file or directory. You can use lddtree to confirm that the transitive dependency missing comes from cpprestsdk.
Expected behavior
No runtime error.
Failure logs error while loading shared libraries: libboost_random.so.1.79.0: cannot open shared object file: No such file or directory
Additional context
It's a RUNPATH (RPATH) problem. I'll open a pull request in a few seconds.
The text was updated successfully, but these errors were encountered:
Describe the bug
On Linux,
cpprestsdk
cannot find its dynamic libraries dependencies at runtime, likelibboost_random.so.1.79.0
.Environment
To Reproduce
Steps to reproduce the behavior:
qpid-proton
invcpkg.json
:error while loading shared libraries: libboost_random.so.1.79.0: cannot open shared object file: No such file or directory
. You can uselddtree
to confirm that the transitive dependency missing comes fromcpprestsdk
.Expected behavior
No runtime error.
Failure logs
error while loading shared libraries: libboost_random.so.1.79.0: cannot open shared object file: No such file or directory
Additional context
It's a
RUNPATH
(RPATH
) problem. I'll open a pull request in a few seconds.The text was updated successfully, but these errors were encountered: