add optional functionality  [SOLVED]

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
mancini
Posts: 40
Joined: Mon Nov 09, 2009 10:56 am

add optional functionality

Post by mancini » Fri Oct 26, 2012 11:00 am

Hello,
I'm trying to add a new functionality to ABINIT : LOTF (Learn On The Fly).
I set the folder which contains LOTF routines and modules in src/68_LOTF.
makemake and compilation are ok.

Now I would to put LOTF as "optional".
To do that I added the to config/specs/corelibs.conf the following lines:

176 [68_lotf]
177 abirules = no
178 optional = yes

but at the makemake I obtain:
[makemake] Generating Makefile.in for each directory
src/98_main/Makefile.am:88: DO_BUILD_68_LOTF does not appear in AM_CONDITIONAL
src/Makefile.am:32: DO_BUILD_68_LOTF does not appear in AM_CONDITIONAL
Makefile.am:648: DO_BUILD_68_LOTF does not appear in AM_CONDITIONAL
[makemake] Aborting now!

What I have to do ?
Have you any idea of my error?
I was looking for the doc in ~abinit/doc without success.

Thanks.
Best regards,
Marco
Attachments
abilint.log
(206.86 KiB) Downloaded 488 times
Marco Mancini

LUTH, Observatoire de Paris
5, place Jules Janssen
92190 MEUDON - FRANCE

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

Re: add optional functionality

Post by pouillon » Mon Oct 29, 2012 12:50 pm

You have to add a corresponding option in config/specs/options.conf, or else it will not make much sense to have the build of your directory optional.

This feature is not documented because it still is under test. For now, just look within options.conf to find examples of DO_BUILD_* options.
Yann Pouillon
Simune Atomistics
Donostia-San Sebastián, Spain

mancini
Posts: 40
Joined: Mon Nov 09, 2009 10:56 am

Re: add optional functionality

Post by mancini » Mon Oct 29, 2012 2:38 pm

Hello Yann,
thanks for your reply.

I was modifying the file config/specs/options.conf
The lines I added were:

[enable_lotf]
description = Activate LOTF functionality (EXPERIMENTAL)
default = no
status = new
define = HAVE_LOTF

I didn't know that the feature was under test.
And I think that when I have started to develop the file config/specs/options.conf was different
and it didn't contain DO_BUILD_* options.

Now I added:
conditional = DO_BUILD_68_LOTF

But I have the same error.
any idea?

Best regards,
Marco
Marco Mancini

LUTH, Observatoire de Paris
5, place Jules Janssen
92190 MEUDON - FRANCE

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

Re: add optional functionality

Post by pouillon » Tue Oct 30, 2012 7:37 pm

I don't find anything in your private branch. Did you push it?
Yann Pouillon
Simune Atomistics
Donostia-San Sebastián, Spain

mancini
Posts: 40
Joined: Mon Nov 09, 2009 10:56 am

Re: add optional functionality

Post by mancini » Wed Oct 31, 2012 9:29 am

Yann,
I pushed it right now.
reamark that the code is totally embryonal

Marco
Marco Mancini

LUTH, Observatoire de Paris
5, place Jules Janssen
92190 MEUDON - FRANCE

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

Re: add optional functionality

Post by pouillon » Fri Nov 02, 2012 6:55 pm

There is a typo in config/specs/options.conf for enable_lotf: "conditionals".
Yann Pouillon
Simune Atomistics
Donostia-San Sebastián, Spain

mancini
Posts: 40
Joined: Mon Nov 09, 2009 10:56 am

Re: add optional functionality

Post by mancini » Mon Nov 05, 2012 9:17 pm

Yann,
you are right but the problem subsists.
Marco
Marco Mancini

LUTH, Observatoire de Paris
5, place Jules Janssen
92190 MEUDON - FRANCE

mancini
Posts: 40
Joined: Mon Nov 09, 2009 10:56 am

Re: add optional functionality  [SOLVED]

Post by mancini » Tue Nov 06, 2012 10:39 am

Yann,

I am sorry.
I don't know why on my laptop it doesn't work but this morning
at the office it worked fine.
I was able to configure and compile with and without LOTF enabled.

So, for me this post is resolved.
Thanks again.

Best regards,
Marco
Marco Mancini

LUTH, Observatoire de Paris
5, place Jules Janssen
92190 MEUDON - FRANCE

Locked