very minor problem in configure

Having trouble compiling the Yambo source? Using an unusual architecture? Problems with the "configure" script? Problems in GPU architectures? This is the place to look.

Moderators: Davide Sangalli, andrea.ferretti, myrta gruning, andrea marini, Daniele Varsano, Conor Hogan, Nicola Spallanzani

Forum rules
If you have trouble compiling Yambo, please make sure to list:
(1) the compiler (vendor and release: e.g. intel 10.1)
(2) the architecture (e.g. 64-bit IBM SP5)
(3) if the problems occur compiling in serial/in parallel
(4) the version of Yambo (revision number/major release version)
(5) the relevant compiler error message
Post Reply
hlee
Posts: 29
Joined: Mon Jul 15, 2013 2:09 pm

very minor problem in configure

Post by hlee » Sun Mar 22, 2015 3:46 pm

Dear all:

I make sure that most people have already known this problem.
When one configures the recent version of Yambo, for example yambo-3.4.1-rev65, under the environment of Intel Compiler version 14 or 15, the following error occurs:

Code: Select all

checking if precompiler works on F90 source... no
configure: error: Found precompiler problems in processing the F90/C source.
As you know well, this can be easily solved by slightly modifying configure file.
I attached below the result of diff between the original configure and modified configure.

Code: Select all

6016a6017,6018
>       VER_14=`grep 14. ver_ | wc -l`
>       VER_15=`grep 15. ver_ | wc -l`
6034a6037,6042
>       if ! test "$VER_14" = "0"; then
>        FCVERSION="14"
>       fi
>       if ! test "$VER_15" = "0"; then
>        FCVERSION="15"
>       fi
6083c6091
<       *11* | *12* | *13* )
---
>       *11* | *12* | *13* | *14* | *15* )
6218c6226
<       *11* | *12* | *13* )
---
>       *11* | *12* | *13* | *14* | *15* )
Regards.
Dr. Hyungjun Lee
Institute of Theoretical Physics, EPFL

User avatar
Daniele Varsano
Posts: 4198
Joined: Tue Mar 17, 2009 2:23 pm
Contact:

Re: very minor problem in configure

Post by Daniele Varsano » Sun Mar 22, 2015 5:42 pm

Dear Hyungjun,
thanks for reporting.

Best,
Daniele
Dr. Daniele Varsano
S3-CNR Institute of Nanoscience and MaX Center, Italy
MaX - Materials design at the Exascale
http://www.nano.cnr.it
http://www.max-centre.eu/

Post Reply