开发者

LD_PRELOAD_PATH for 32bits application on 64bits environment

开发者 https://www.devze.com 2023-03-26 04:19 出处:网络
I am on a 64bits linux running an application which is compiled for 32bits and have some libs in its directory.

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消