UNIX requirements
On UNIX, there is an environment variable that your operating system uses to describe the possible locations of shared libraries. Before you try to run your shared application, be sure the location of the libraries you used to create the application is specified in this environment variable.
For many operating systems, the environment variable for shared libraries is LD_LIBRARY_PATH. Some operating systems use a different name, so be sure to use the name appropriate to your operating system.
You may set the library path variable from your shell, or by including it in your rc or profile script.
*In a Korn, Bourne or similar shell, if your libraries are installed in the /usr/local/rwav/lib directory, use the following command:
 
export LD_LIBRARY_PATH=/usr/local/rwav/lib:$LD_LIBRARY_PATH
*If you use the C shell or a similar shell, the command is:
 
setenv LD_LIBRARY_PATH /usr/local/rwav/lib:$LD_LIBRARY_PATH