[RESOLVED] installation ABINIT 6.6.3: disable bigDFT

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
davt
Posts: 2
Joined: Wed Mar 09, 2011 6:38 pm

[RESOLVED] installation ABINIT 6.6.3: disable bigDFT

Post by davt » Wed May 11, 2011 12:02 pm

Dear all,
I´m trying to install the last version of Abinit on a linux machine, openSuse distro.

when I run the configure file it punch out this warning:
"
configure: using tarball repository /usr/users/davide/.abinit/tarballs
configure: WARNING: no 'patch' command available
configure: error: please install patch or disable BigDFT
"

but checking inside the configure file this should be already disable:
"
davide@olymp:~/Downloads/abinit-6.6.3> grep "enable_bigdft" configure
if test "${enable_bigdft}" != ""; then
enable_bigdft="no"
if test "${enable_bigdft}" = "yes"; then
if test "${enable_bigdft}" = "yes"; then
enable_bigdft="no"
enable_bigdft="no"
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${enable_bigdft}" >&5
$as_echo "${enable_bigdft}" >&6; }
"

So I´m confused :?: :?

any suggestion?

Boris
Posts: 128
Joined: Tue Feb 16, 2010 10:13 am
Location: France

Re: installation ABINIT 6.6.3: disable bigDFT

Post by Boris » Wed May 11, 2011 5:33 pm

Hi

You can disable BigDFT using the configure command line :

Code: Select all

../configure --enable-mpi --with-dft-flavor=none


But this will also disable all other plugins.

So if you want to remove only BigDFT, you need to specify the plugins you want to install, for instance :

Code: Select all

../configure --enable-mpi --with-dft-flavor=atompaw


Boris
----------------------------------------------------------
Boris Dorado
Atomic Energy Commission
France
----------------------------------------------------------

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

Re: installation ABINIT 6.6.3: disable bigDFT

Post by pouillon » Wed May 11, 2011 5:57 pm

Or install patch if you want to be able to use BigDFT.

If you're using Ubuntu Linux, this is as simple as:

Code: Select all

sudo apt-get install patch
Yann Pouillon
Simune Atomistics
Donostia-San Sebastián, Spain

Locked