Preprocessor
Posted: Wed Nov 23, 2016 4:51 pm
Hi all,
I have some trouble configuring the devel version of yambo.
With
It runs until checking the precompiler on F90 sources:
When I check this manually, icc -E – ansi has a problem with the line
because the // are interpreted as comments and the F90 file will then only contain
which fails. I could get it to work using “ifort -E -free" as preprocessor but it seems like there is no way telling configure to use this. I did set the FCCPP flag but I can’t see it being used anywhere in the configure script.
I should say that I'm running Intel Compiler 17. Any clue what I could try?
Cheers,
Bjoern
I have some trouble configuring the devel version of yambo.
With
Code: Select all
./configure --with-blas-libs="-lmkl_intel_lp64 -lmkl_sequential -lmkl_core" --with-lapack-libs="-lmkl_intel_lp64 -lmkl_sequential -lmkl_core"
Code: Select all
configure: testing preprocessor icc -E -ansi
checking if precompiler works on C source... yes
checking if precompiler works on F90 source... no
configure: error: Found precompiler problems in processing the F90/C source.
Code: Select all
write (*,'('//a//')') 'hello'
Code: Select all
write (*,'('
I should say that I'm running Intel Compiler 17. Any clue what I could try?
Cheers,
Bjoern