Page 1 of 1

[SOLVED] Not able to configure abinit-6.10.1

Posted: Wed Jan 25, 2012 5:00 pm
by roycuevas
Dear all:

I am new to abinit. I have been trying to configure the 6.10.1 version in on of my group's server with no success.

First I have typed:

./configure --enable-mpi=no FC=/opt/intel/composerxe-2011.0.084/bin/intel64/ifort

So far so good. After a while I get the "go" message to continue and do make. Then I do

make mj4

And after a while it seems to be finished correctly. Nevertheless when I try doing the first test:

make testin_1

I get

echo "Running built-in test in_1"
Running built-in test in_1
cd tests ; /usr/bin/perl .././tests/Scripts/run-basic-tests.pl built-in in_1 /home/wychem/rs244/abinit-6.10.1
../../../src/98_main/abinit: error while loading shared libraries: libifport.so.5: cannot open shared object file: No such file or directory


Could anyone give me some guidance on this?. It would be greatly appreciated!!!

Rogelio

Re: Not able to configure abinit-6.10.1

Posted: Wed Jan 25, 2012 6:22 pm
by pouillon
Usual misconfiguration of LD_LIBRARY_PATH. See e.g. viewtopic.php?f=3&t=963&p=3105&hilit=error+while+loading+shared+libraries+ifort#p3105

In the case of ifort, you should have a ifortvars.sh script somewhere that you can source:

Code: Select all

source /path/to/ifortvars.sh

Re: Not able to configure abinit-6.10.1

Posted: Wed Jan 25, 2012 7:55 pm
by jbeuken
Hi,

roycuevas wrote:./configure --enable-mpi=no FC=/opt/intel/composerxe-2011.0.084/bin/intel64/ifort
...
echo "Running built-in test in_1"
Running built-in test in_1
cd tests ; /usr/bin/perl .././tests/Scripts/run-basic-tests.pl built-in in_1 /home/wychem/rs244/abinit-6.10.1
../../../src/98_main/abinit: error while loading shared libraries: libifport.so.5: cannot open shared object file: No such file or directory



as suggested by Yann, probably a problem with LD_LIBRARY_PATH
try :

Code: Select all

source /opt/intel/composerxe-2011.0.084/bin/compilervars.sh intel64


2 remarks :
    - there is a 6.10.3 version released
    - there is a update of the intel composer ( composer_xe_2011_sp1.7.25 ) : highly recommended

regards

jmb

Re: Not able to configure abinit-6.10.1

Posted: Wed Jan 25, 2012 8:05 pm
by roycuevas
Thanks Yan and Michele for your prompt response.

I will try what you suggested. I firstly download the latest version (thanks Michele).

If I need further help (hopefully no) I will let you know.

Rogelio

Re: Not able to configure abinit-6.10.1

Posted: Wed Jan 25, 2012 11:38 pm
by roycuevas
roycuevas wrote:Thanks Yan and Michele for your prompt response.

I will try what you suggested. I firstly download the latest version (thanks Michele).

If I need further help (hopefully no) I will let you know.

Rogelio



Thank you both. After a couple of tricks it worked. The make tests did what they were supposed to.
Thanks a lot!