How to set the environmental variable LD_LIBRARY_PATH in linux

后端 未结 10 1486
独厮守ぢ
独厮守ぢ 2020-11-22 11:11

I have first executed the command: export LD_LIBRARY_PATH=/usr/local/lib

Then I have opened .bash_profile file: vi ~/.bash_profile

10条回答
  •  死守一世寂寞
    2020-11-22 11:31

    Alternatively you can execute program with specified library dir:

    /lib/ld-linux.so.2 --library-path PATH EXECUTABLE
    

    Read more here.

提交回复
热议问题