Dear All
I have a library I am trying to port to ifort on MacOS, and about half way through, the following happens:
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #34bc26; background-color: #ffffff}
p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #000000; background-color: #ffffff}
span.s1 {font-variant-ligatures: no-common-ligatures; color: #000000}
span.s2 {font-variant-ligatures: no-common-ligatures}
[ 47%] Building Fortran object CMakeFiles/common.dir/WR_RECORDER.f90.o
[ 48%] Building Fortran object CMakeFiles/common.dir/WRITE_HTML_TEST.f90.o
[ 48%] Building Fortran object CMakeFiles/common.dir/COMMON_MODS.f90.o
[ 48%] Building Fortran object CMakeFiles/common.dir/SPECIAL_CONSTANTS_subm.f90.o
Error copying Fortran module "recursive". Tried "RECURSIVE.mod" and "recursive.mod".
make[2]: *** [CMakeFiles/common.dir/recursive.mod.stamp] Error 1
make[1]: *** [CMakeFiles/common.dir/all] Error 2
make: *** [all] Error 2
The slight problem is that I have no idea what this Fortran module "recursive" is!
On my Mac I am using CMake to create a make file which contains no reference to a recursive.mod. I have no file called recursive.f90 or a module called recursive.
I do use small number of recursive routines, and many of these seem to have compiled just fine.
I have no idea what to do next, I am using
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #000000; background-color: #ffffff}
span.s1 {font-variant-ligatures: no-common-ligatures}
ifort (IFORT) 17.0.5 20170817
Thanks in advance
Norman