I am on a 64bits linux running an application which is compiled for 32bits and have some libs in its directory. So I do:
export LD_PRELOAD_PATH=./
./my_app
Still, I get errors of not finding the lib.
Is there other variable name for 32 bits libs search path?
Ps: I am sure I am not the first one t开发者_JS百科o ask that, but I couldnt fint it.
I believe you want LD_LIBRARY_PATH
, preload is a different beast.
精彩评论