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.
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* )