Yes, this is a 32-bit system.  So far I still get those errors even with the change to ~/.bashrc
I notice that my default LD_LIBRARY_PATH is completely empty, though.

On 1/23/2012 8:38 AM, Jared Morrow wrote:
They might indeed be on your system, but are simply not in your LD path so the linker doesn't know where to look for them.   One thing that is curious though, those last links are the 32bit libstdc++ libraries, are you on a 32bit system?   If not, you might not have the 64bit c++ libraries installed.   In my case, I have the libraries you have, as well as:

/usr/lib/x86_64-linux-gnu/libstdc++.so.6
/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.16


If you do indeed want to link to the 32bit versions, make sure the linker is looking for that path.

env | grep LD_LIBRARY_PATH

If it is not, just add it in your start up scripts (defaulted to ~/.bashrc for ubuntu/mint)

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:your_additional_path


Hope that helps,
Jared


_______________________________________________
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com

Reply via email to