While trying to use Intel compilers for the recent version of TELEMAC v8p4r0, the build fails due to hard coded directives for library inclusions that seems to be geared toward GFortran.
For instance, during the linking of executables, every link fails with the following text inside the link command:
-lgaia4telemac2d -lkhione4telemac2d -lwaqtel4telemac2d -lstbtel4telemac2d -lsisyphe4telemac2d -ltomawac4telemac2d -lad4telemac2d -lnestor4telemac2d -lbief4telemac2d -lparallel4telemac2d -lhermes4telemac2d -ldamocles4telemac2d -lspecial4telemac2d
which seems not to be accepted by non-GFortran compilers under Windows,
My quick-and-dirty solution was to list real library names (e.g. instead of
-lgaia4telemac2d I've put
libgaia4telemac2d.lib) but this leads to the build of large executables containing code the do not require.
Did anyone had such issue? How did you resolve it?