Hi,
Looking into config.log, I think the issue is with the LD_LIBRARY_PATH. In
the latest intel compilers, the compiler configuration files
(<install-dir/bin/ifort.cfg and <install-dir>/bin/icpc.cfg) have been
modified to remove RPATH command to the linker as opposed to previous
releases. Therefore executables compiled using IFC do not contain the path
to the intel shared libraries resulting in this error. To solve this
problem, just set the LD_LIBRARY_PATH to include <install-dir>/lib
for sh type shells:
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:<install-dir>/lib
for tcsh type shells
setenv LD_LIBRARY_PATH $LD_LIBRARY_PATH:<install-dir>/lib
Hope this helps,
Anju
On Thu, 17 Jun 2004, Raphael Gaspar Lullis wrote:
> Hi,
> I trying to compile lam-7.0.6 with the latest intel compilers. To do so,
> I set the env variables as directed, but still get configure errors.
>
> I don't have any idea what happens with configure, so I sending
> config.log attached. The only thing that I noticed is that icc is not
> running when invoked by a regular user, but that's due to a misplaced
> license file.
>
> Hope someone can help me,
> Raphael
>
|