|This section describes the ESSL-specific changes you need to |make to your job procedures for compiling, linking, and running your |program.
|You can use any procedures you are currently using to compile, link, and |run your Fortran, C, and C++ programs, as long as you make the necessary |modifications required by ESSL.
|Notes:
|If the libraries are installed somewhere else, add the path name of that |directory to the beginning of the LIBPATH environment variable, |being careful to keep /usr/lib in the path. The |correct LIBPATH setting is needed both for linking and executing |the program.
|For example, if you installed the ESSL libraries in |/home/me/lib you would issue ksh |commands similar to the following in order to compile and link a |program:
| LIBPATH=/home/me/lib:/usr/lib | export LIBPATH | xlf -o myprog myprog.f -lessl
|After setting the LIBPATH command, the |/home/me/lib directory is the directory that gets |searched first for the necessary libraries. This same search criterion |is used at both compile and link time and run time.