Closed taprs closed 1 month ago
It looks that librhash got installed as librhash.so.1.4.4 without the symlink librhash.so.1 -> librhash.so.1.4.4
On what OS did you encountered this bug?
Ok, I now see that you are installing rhash into the current directory.
You should link the librhash statically into the rhash binary by command:
./configure --enable-static=librhash --prefix=${PWD} && make install
Hey, same thing happened to me.
I used ./configure && make install
in Oracle Linux
I have a Prod and DEV envs, Prod is a clone of DEV fyi However Rhash works in Dev and not in Prod
later I found out that, Rhash bin and the lib are in /usr/local/bin and /usr/local/lib respectively. which is not detected by the OS
got it resolved by adding the paths to $PATH and $LD_LIBRARY_PATH
My question is why is that necessary? DEV env worked out of the box.
Hi and thanks for the tool!
I ran into error after running
in the directory of the cloned repo. I cannot install into common directories due to access restrictions. As a result, the executable does not seem to detect the
lib
folder:Explicitly settint
--libdir
does not work too. Any ideas how to fix that?