Re: Problems setting value for LD_LIBRARY_PATH



On Mon, 27 Feb 2006 12:21:20 -0600, dont wrote:

I have been trying to set LD_LIBRARY_PATH in order to include the path to
access the fortran compiler libraries. I am using :
LD_LIBRARY_PATH=/opt/intel/fc/9.0/lib; export $LD_LIBRARY_PATH
^
+--- Take this out

You are exporting an empty symbol "/opt/intel/fc....". Do it like
this:

export LD_LIBRARY_PATH=/opt/intel/fc/.....

or

LD_LIBRARY_PATH=/opt/intel/fc/.....; export LD_LIBRARY_PATH

HTH

.