[SOLVED] Not able to configure abinit-6.10.1

option, parallelism,...

Moderators: fgoudreault, mcote

Forum rules
Please have a look at ~abinit/doc/config/build-config.ac in the source package for detailed and up-to-date information about the configuration of Abinit 8 builds.
For a video explanation on how to build Abinit 7.x for Linux, please go to: http://www.youtube.com/watch?v=DppLQ-KQA68.
IMPORTANT: when an answer solves your problem, please check the little green V-like button on its upper-right corner to accept it.
Locked
roycuevas
Posts: 7
Joined: Tue Jan 24, 2012 11:11 pm

[SOLVED] Not able to configure abinit-6.10.1

Post by roycuevas » Wed Jan 25, 2012 5:00 pm

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

User avatar
pouillon
Posts: 651
Joined: Wed Aug 19, 2009 10:08 am
Location: Spain
Contact:

Re: Not able to configure abinit-6.10.1

Post by pouillon » Wed Jan 25, 2012 6:22 pm

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
Yann Pouillon
Simune Atomistics
Donostia-San Sebastián, Spain

User avatar
jbeuken
Posts: 365
Joined: Tue Aug 18, 2009 9:24 pm
Contact:

Re: Not able to configure abinit-6.10.1

Post by jbeuken » Wed Jan 25, 2012 7:55 pm

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
------
Jean-Michel Beuken
Computer Scientist

roycuevas
Posts: 7
Joined: Tue Jan 24, 2012 11:11 pm

Re: Not able to configure abinit-6.10.1

Post by roycuevas » Wed Jan 25, 2012 8:05 pm

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

roycuevas
Posts: 7
Joined: Tue Jan 24, 2012 11:11 pm

Re: Not able to configure abinit-6.10.1

Post by roycuevas » Wed Jan 25, 2012 11:38 pm

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!

Locked