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
And if you'll look at ldd output, you'll get the same:
% ldd example
linux-vdso.so.1 (0x00007ffd9fbeb000)
libcalc.so => not found
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f5c1f7a7000)
/lib64/ld-linux-x86-64.so.2 (0x00007f5c1f9dc000)
To solve this issue I have to run program like this:
LD_LIBRARY_PATH=`pwd` ./example
Probably this should be added to README?
The text was updated successfully, but these errors were encountered:
This happens when I'm running
./example
.And if you'll look at
ldd
output, you'll get the same:To solve this issue I have to run program like this:
Probably this should be added to README?
The text was updated successfully, but these errors were encountered: