Contents:
Search: |
How to configure Linux for Emdros useIntroductionThis page describes how to set up your linker on Linux so that it finds the Emdros shared libraries. ld.soThe ld.so(8) linker is the system component responsible for linking in shared libraries. By default, it looks in a number of standard directories for shared libraries. There are two ways to configure this:
Setting LD_LIBRARY_PATHIn order to set the LD_LIBRARY_PATH variable, you can do the following (in the bash shell): export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib/emdros" |