If you want it system-wide, you can add a file containing the path to /etc/ld.so.conf.d/ or modify /etc/ld.so.conf directly depending on your system. Then run ldconfig (as root) and you're done - you won't need LD_LIBRARY_PATH.
If you want it system-wide, you can add a file containing the path to /etc/ld.so.conf.d/ or modify /etc/ld.so.conf directly depending on your system. Then run ldconfig (as root) and you're done - you won't need LD_LIBRARY_PATH.
sincnarf (14th October 2007), sunil.thaha (18th October 2007)
You can open terminal and export the LD_LIBRARY_PATH just before running it as follows:
export LD_LIBRARY_PATH
exec "./my_app"
Bookmarks