<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <title>Compilation error in Fedora-25: gfortran: error: unrecognized command line.</title>
  <link rel="self" href="https://dlt-acc.firelay.cloud/c/message_boards/find_thread?p_l_id=3231581&amp;threadId=3399030" />
  <subtitle>Compilation error in Fedora-25: gfortran: error: unrecognized command line.</subtitle>
  <id>https://dlt-acc.firelay.cloud/c/message_boards/find_thread?p_l_id=3231581&amp;threadId=3399030</id>
  <updated>2026-05-15T15:08:47Z</updated>
  <dc:date>2026-05-15T15:08:47Z</dc:date>
  <entry>
    <title>RE: Compilation error in Fedora-25: gfortran: error: unrecognized command l</title>
    <link rel="alternate" href="https://dlt-acc.firelay.cloud/c/message_boards/find_message?p_l_id=3231581&amp;messageId=3400629" />
    <author>
      <name>Adri Mourits</name>
    </author>
    <id>https://dlt-acc.firelay.cloud/c/message_boards/find_message?p_l_id=3231581&amp;messageId=3400629</id>
    <updated>2018-12-13T19:32:32Z</updated>
    <published>2018-12-13T19:32:32Z</published>
    <summary type="html">&lt;p&gt;Hi Wasif,&lt;/p&gt;
&lt;p&gt;Yes, by combining FLOW and WAVE, you can model wave, wind and
  sediment processes.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Adri&lt;/p&gt;</summary>
    <dc:creator>Adri Mourits</dc:creator>
    <dc:date>2018-12-13T19:32:32Z</dc:date>
  </entry>
  <entry>
    <title>RE: Compilation error in Fedora-25: gfortran: error: unrecognized command l</title>
    <link rel="alternate" href="https://dlt-acc.firelay.cloud/c/message_boards/find_message?p_l_id=3231581&amp;messageId=3399812" />
    <author>
      <name>MD WASIF E ELAHI</name>
    </author>
    <id>https://dlt-acc.firelay.cloud/c/message_boards/find_message?p_l_id=3231581&amp;messageId=3399812</id>
    <updated>2018-10-17T03:57:02Z</updated>
    <published>2018-10-17T03:39:56Z</published>
    <summary type="html">&lt;p&gt;Hi Adri and Michelle,&lt;/p&gt;
&lt;p&gt;Thanks a lot. I have successfully finished the compilation after
  removing WAQ. I tried by modifying getuuid.c as per Michelle's
  suggestion. Still, I got some errors related to uuid. However, I will
  use Delft3d to study wave, wind and sediment process altogether. Hope
  it could be done without WAQ, right? &lt;/p&gt;
&lt;p&gt;Thanks again. &lt;/p&gt;
&lt;p&gt;Kind regards,&lt;/p&gt;
&lt;p&gt;Wasif&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</summary>
    <dc:creator>MD WASIF E ELAHI</dc:creator>
    <dc:date>2018-10-17T03:39:56Z</dc:date>
  </entry>
  <entry>
    <title>RE: Compilation error in Fedora-25: gfortran: error: unrecognized command l</title>
    <link rel="alternate" href="https://dlt-acc.firelay.cloud/c/message_boards/find_message?p_l_id=3231581&amp;messageId=3399802" />
    <author>
      <name>Michelle Jeuken</name>
    </author>
    <id>https://dlt-acc.firelay.cloud/c/message_boards/find_message?p_l_id=3231581&amp;messageId=3399802</id>
    <updated>2018-10-16T15:37:22Z</updated>
    <published>2018-10-16T15:37:22Z</published>
    <summary type="html">&lt;p&gt;uuid is used in src\engines_gpl\waq\packages\waq_utils_c\src\getuuid.c&lt;/p&gt;
&lt;p&gt;If you can't get the compilation to find uuid, you can modifiy this
  file, so it will generate a fake uuid. Remove this section:&lt;/p&gt;
&lt;pre&gt;
#ifdef WIN32
#include &amp;lt;windows.h&amp;gt;
#else
#include &amp;lt;uuid/uuid.h&amp;gt;
#endif&lt;/pre&gt;
&lt;p&gt;End replace the call to generate a uuid:&lt;/p&gt;
&lt;pre&gt;
#ifdef WIN32
    CoCreateGuid( (GUID *)guid );
#else
    uuid_generate( guid );
#endif
&lt;/pre&gt;
&lt;p&gt;with this:&lt;/p&gt;
&lt;pre&gt;
    for (i = 0; i &amp;lt; 16; i++) {
        guid[i] = '0';
    }
&lt;/pre&gt;
&lt;p&gt;Then remove -luuid in both these Makefile.am's&lt;/p&gt;
&lt;pre&gt;
src\engines_gpl\waq\packages\delwaq2\src\Makefile.am

src\engines_gpl\waq\packages\delwaq1\src\Makefile.am&lt;/pre&gt;
&lt;p&gt;I hope this will avoid the need of the uuid library&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Michelle&lt;/p&gt;</summary>
    <dc:creator>Michelle Jeuken</dc:creator>
    <dc:date>2018-10-16T15:37:22Z</dc:date>
  </entry>
  <entry>
    <title>RE: Compilation error in Fedora-25: gfortran: error: unrecognized command l</title>
    <link rel="alternate" href="https://dlt-acc.firelay.cloud/c/message_boards/find_message?p_l_id=3231581&amp;messageId=3399796" />
    <author>
      <name>Adri Mourits</name>
    </author>
    <id>https://dlt-acc.firelay.cloud/c/message_boards/find_message?p_l_id=3231581&amp;messageId=3399796</id>
    <updated>2018-10-16T14:29:37Z</updated>
    <published>2018-10-16T14:29:37Z</published>
    <summary type="html">&lt;p&gt;Hi Wasif,&lt;/p&gt;
&lt;p&gt;Workaround: uuid is only used by WAQ. If you do not need WAQ, you can
  exclude it from the compilation as follows:&lt;br /&gt; Open file
  &amp;quot;.../src/engines_gpl/Makefile.am&amp;quot; in an editor and remove
  the line &amp;quot;     waq \ &amp;quot;&lt;/p&gt;
&lt;p&gt;If you do need WAQ: I'm confused: the make.log file attached to your
  previous post contains the error &amp;quot;cannot find -luuid&amp;quot;. But
  the fragment you posted now contains an error message about NetCDF.
  Anyway, I'll ask a WAQ-colleague to help with the uuid problem.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Adri&lt;/p&gt;</summary>
    <dc:creator>Adri Mourits</dc:creator>
    <dc:date>2018-10-16T14:29:37Z</dc:date>
  </entry>
  <entry>
    <title>RE: Compilation error in Fedora-25: gfortran: error: unrecognized command l</title>
    <link rel="alternate" href="https://dlt-acc.firelay.cloud/c/message_boards/find_message?p_l_id=3231581&amp;messageId=3399471" />
    <author>
      <name>MD WASIF E ELAHI</name>
    </author>
    <id>https://dlt-acc.firelay.cloud/c/message_boards/find_message?p_l_id=3231581&amp;messageId=3399471</id>
    <updated>2018-10-04T07:01:52Z</updated>
    <published>2018-10-04T07:01:52Z</published>
    <summary type="html">&lt;p&gt;Hi Adri,&lt;/p&gt;
&lt;p&gt;Thanks for your qucik response. I checked the location of
  &amp;quot;libuuid.so.1&amp;quot; is located in &amp;quot;/lib64'. Before
  compiling, I applied your given command as &amp;quot;export LD_LIBRARY_PATH=/lib64:$LD_LIBRARY_PATH &amp;quot;.&lt;/p&gt;
&lt;p&gt;In &lt;strong&gt;cofigure.log&lt;/strong&gt; i found an error line as given below:&lt;/p&gt;
&lt;p&gt;.......................&lt;/p&gt;
&lt;p&gt;checking for MPI_Init... yes&lt;br /&gt; checking for mpi.h... yes&lt;br /&gt;
  checking for openmpif77... no&lt;br /&gt; checking for mpif77...
  mpif77&lt;br /&gt; checking for mpif.h... yes&lt;br /&gt; checking for
  openmpif90... /home/Elahi/Downloads/libraries/mpich-3/bin/mpif90&lt;br /&gt;
  checking for mpif.h... yes&lt;br /&gt;
  &lt;strong&gt;gfortran: error: unrecognized command line option
    '-showme:link'; did you mean '--force-link'?   (any suggestion
    regarding this please?)&lt;/strong&gt;
  &lt;br /&gt; configure: creating ./config.lt&lt;br /&gt; config.lt: creating
  libtool&lt;br /&gt; checking for the extension of Delft3D plugins...
  .so&lt;br /&gt; checking that generated files are newer than configure...
  done&lt;br /&gt; configure: creating ./config.status&lt;br /&gt; config.status:
  creating Makefile&lt;br /&gt; config.status: creating
  engines_gpl/d_hydro/Makefile&lt;br /&gt; config.status: creating
  engines_gpl/d_hydro/packages/d_hydro/Makefile&lt;br /&gt; ..............
  (lots of line without any error)&lt;/p&gt;
&lt;p&gt;config.status: creating
  utils_lgpl/ods/packages/ods/src/Makefile&lt;br /&gt; config.status: creating
  config.h&lt;br /&gt; config.status: executing depfiles commands&lt;br /&gt;
  config.status: executing libtool commands&lt;/p&gt;
&lt;p&gt;&amp;lt;&amp;lt;&amp;lt;end of configure.log&amp;gt;&amp;gt;&amp;gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;In make.log error remains the same:&lt;/p&gt;
&lt;p&gt;............&lt;/p&gt;
&lt;p&gt;libtool: compile:  /home/Elahi/Downloads/libraries/mpich-3/bin/mpif90
  -DHAVE_CONFIG_H -I. -I../../../../..
  -I../../../../../utils_lgpl/deltares_common/packages/deltares_common/src
  -I-L/home/Elahi/Downloads/libraries/netcdf_4.4/lib -lnetcdff
  -DWITH_DELFTONLINE
  -I../../../../../utils_lgpl/deltares_common/packages/deltares_common/src
  -I-L/home/Elahi/Downloads/libraries/netcdf_4.4/lib -lnetcdff
  -I/home/Elahi/Downloads/libraries/netcdf_4.4/include -O2
  -ffree-line-length-none -cpp -c ec_module_version.F90  -fPIC -o
  .libs/ec_module_version.o&lt;br /&gt; f&lt;strong&gt;951: Warning: Nonexistent
    include directory ‘-L/home/Elahi/Downloads/libraries/netcdf_4.4/lib’
    [-Wmissing-include-dirs] ( it seems like generated from the error in
    configure?)))&lt;br /&gt; f951: Warning: Nonexistent include directory
    ‘-L/home/Elahi/Downloads/libraries/netcdf_4.4/lib’ [-Wmissing-include-dirs]&lt;/strong&gt;
  &lt;br /&gt; libtool: compile:
   /home/Elahi/Downloads/libraries/mpich-3/bin/mpif90 -DHAVE_CONFIG_H
  -I. -I../../../../..
  -I../../../../../utils_lgpl/deltares_common/packages/deltares_common/src
  -I-L/home/Elahi/Downloads/libraries/netcdf_4.4/lib -lnetcdff
  -DWITH_DELFTONLINE
  -I../../../../../utils_lgpl/deltares_common/packages/deltares_common/src
  -I-L/home/Elahi/Downloads/libraries/netcdf_4.4/lib -lnetcdff
  -I/home/Elahi/Downloads/libraries/netcdf_4.4/include -O2
  -ffree-line-length-none -cpp -c ec_module_version.F90 -o
  ec_module_version.o &amp;gt;/dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt; ........&lt;/p&gt;
&lt;p&gt;..........&lt;/p&gt;
&lt;p&gt;ibdata_f.a -lpthread -luuid -ldl -lrt -lexpat -lstdc++ -pthread
  -fopenmp -Wl,-rpath -Wl,/home/Elahi/delft3d_repository/src/lib
  -Wl,-rpath -Wl,/home/Elahi/Downloads/libraries/netcdf_4.4/lib
  -Wl,-rpath -Wl,/home/Elahi/Downloads/libraries/hdf5-1.8.13/lib&lt;br /&gt;
  /usr/bin/ld: cannot find -luuid&lt;br /&gt; collect2: error: ld returned 1
  exit status&lt;br /&gt; Makefile:631: recipe for target 'delwaq1'
  failed&lt;br /&gt; make[6]: *** [delwaq1] Error 1&lt;br /&gt; make[6]: Leaving
  directory
  '/home/Elahi/delft3d_repository/src/engines_gpl/waq/packages/delwaq1/src'&lt;br /&gt;
  Makefile:755: recipe for target 'install' failed&lt;br /&gt; make[5]: ***
  [install] Error 2&lt;br /&gt; make[5]: Leaving directory
  '/home/Elahi/delft3d_repository/src/engines_gpl/waq/packages/delwaq1/src'&lt;br /&gt;
  Makefile:488: recipe for target 'install-recursive' failed&lt;br /&gt;
  make[4]: *** [install-recursive] Error 1&lt;br /&gt; make[4]: Leaving
  directory
  '/home/Elahi/delft3d_repository/src/engines_gpl/waq/packages/delwaq1'&lt;br /&gt;
  Makefile:496: recipe for target 'install-recursive' failed&lt;br /&gt;
  make[3]: *** [install-recursive] Error 1&lt;br /&gt; make[3]: Leaving
  directory
  '/home/Elahi/delft3d_repository/src/engines_gpl/waq/packages'&lt;br /&gt;
  Makefile:488: recipe for target 'install-recursive' failed&lt;br /&gt;
  make[2]: *** [install-recursive] Error 1&lt;br /&gt; make[2]: Leaving
  directory '/home/Elahi/delft3d_repository/src/engines_gpl/waq'&lt;br /&gt;
  Makefile:493: recipe for target 'install-recursive' failed&lt;br /&gt;
  make[1]: *** [install-recursive] Error 1&lt;br /&gt; make[1]: Leaving
  directory '/home/Elahi/delft3d_repository/src/engines_gpl'&lt;br /&gt;
  Makefile:548: recipe for target 'install-recursive' failed&lt;br /&gt; make:
  *** [install-recursive] Error 1&lt;br /&gt; &amp;lt;&amp;lt;&amp;lt;end&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;/p&gt;</summary>
    <dc:creator>MD WASIF E ELAHI</dc:creator>
    <dc:date>2018-10-04T07:01:52Z</dc:date>
  </entry>
  <entry>
    <title>RE: Compilation error in Fedora-25: gfortran: error: unrecognized command l</title>
    <link rel="alternate" href="https://dlt-acc.firelay.cloud/c/message_boards/find_message?p_l_id=3231581&amp;messageId=3399458" />
    <author>
      <name>Adri Mourits</name>
    </author>
    <id>https://dlt-acc.firelay.cloud/c/message_boards/find_message?p_l_id=3231581&amp;messageId=3399458</id>
    <updated>2018-10-03T14:22:14Z</updated>
    <published>2018-10-03T14:22:14Z</published>
    <summary type="html">&lt;p&gt;Hi Wasif,&lt;/p&gt;
&lt;p&gt;When uuid-dev is installed in the normal way, then the library
  &amp;quot;libuuid.so.1&amp;quot; is located in directory &amp;quot;/lib64&amp;quot;.
  Can you check that?&lt;/p&gt;
&lt;p&gt;Automake should add directory &amp;quot;/lib64&amp;quot; to the search paths
  when looking for libraries.  It's difficult to find out why that goes
  wrong on your system.&lt;/p&gt;
&lt;p&gt;Can you try the following: Before compiling, execute the following command:&lt;br /&gt;
  &lt;code&gt;export LD_LIBRARY_PATH=/lib64:$LD_LIBRARY_PATH&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Adri&lt;/p&gt;</summary>
    <dc:creator>Adri Mourits</dc:creator>
    <dc:date>2018-10-03T14:22:14Z</dc:date>
  </entry>
  <entry>
    <title>RE: Compilation error in Fedora-25: gfortran: error: unrecognized command l</title>
    <link rel="alternate" href="https://dlt-acc.firelay.cloud/c/message_boards/find_message?p_l_id=3231581&amp;messageId=3399409" />
    <author>
      <name>MD WASIF E ELAHI</name>
    </author>
    <id>https://dlt-acc.firelay.cloud/c/message_boards/find_message?p_l_id=3231581&amp;messageId=3399409</id>
    <updated>2018-10-03T04:21:45Z</updated>
    <published>2018-10-03T04:21:45Z</published>
    <summary type="html">&lt;p&gt;Hi Adri,&lt;/p&gt;
&lt;p&gt;Thank you for your response. I am still struggling with the same
  issue. uuid-dev is already installed in the same directory
    &amp;quot;&lt;strong&gt;/usr/bin/&amp;quot;, &lt;/strong&gt;. Am I missing something?
  should I change any directory for uuid-dev anywhere?  Please help me out.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Kind regards,&lt;/p&gt;
&lt;p&gt;Wasif &lt;/p&gt;</summary>
    <dc:creator>MD WASIF E ELAHI</dc:creator>
    <dc:date>2018-10-03T04:21:45Z</dc:date>
  </entry>
  <entry>
    <title>RE: Compilation error in Fedora-25: gfortran: error: unrecognized command l</title>
    <link rel="alternate" href="https://dlt-acc.firelay.cloud/c/message_boards/find_message?p_l_id=3231581&amp;messageId=3399355" />
    <author>
      <name>Adri Mourits</name>
    </author>
    <id>https://dlt-acc.firelay.cloud/c/message_boards/find_message?p_l_id=3231581&amp;messageId=3399355</id>
    <updated>2018-10-02T13:09:59Z</updated>
    <published>2018-10-02T13:09:59Z</published>
    <summary type="html">&lt;p&gt;Hi Wasif,&lt;/p&gt;
&lt;p&gt;Yes, compiling on Linux can really be a pain. The good news is that
  once you have it compiling, the process is very stable. And you are
  already quite far.&lt;/p&gt;
&lt;p&gt;The error &amp;quot;cannot find -luuid&amp;quot; is caused because the
  package &amp;quot;uuid-dev&amp;quot; is not installed on your machine, see the
    &lt;a href="https://oss.deltares.nl/web/delft3d/source-code#prerequisites"&gt;prerequisites&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Adri&lt;/p&gt;</summary>
    <dc:creator>Adri Mourits</dc:creator>
    <dc:date>2018-10-02T13:09:59Z</dc:date>
  </entry>
  <entry>
    <title>RE: Compilation error in Fedora-25: gfortran: error: unrecognized command l</title>
    <link rel="alternate" href="https://dlt-acc.firelay.cloud/c/message_boards/find_message?p_l_id=3231581&amp;messageId=3399065" />
    <author>
      <name>MD WASIF E ELAHI</name>
    </author>
    <id>https://dlt-acc.firelay.cloud/c/message_boards/find_message?p_l_id=3231581&amp;messageId=3399065</id>
    <updated>2018-09-17T00:42:01Z</updated>
    <published>2018-09-17T00:42:01Z</published>
    <summary type="html">&lt;p&gt;After following all the steps of
  &amp;quot;build_ubuntu.16.04LT.readme&amp;quot;, above errors are solved.
  However, now I am getting new errors related to uuid library. uuid
  package is already installed, but don't know why make cannot find
  -luuid. Errors are given below:&lt;/p&gt;

&lt;p&gt;..................................................................&lt;br /&gt;
  ../../../../../engines_gpl/part/packages/utils_f/src/.libs/libutils_f.a
  ../../../../../engines_gpl/part/packages/kernel_f/src/.libs/libkernel_f.a
  ../../../../../engines_gpl/part/packages/io_f/src/.libs/libio_f.a
  ../../../../../engines_gpl/part/packages/data_f/src/.libs/libdata_f.a
  -lpthread -luuid -ldl -lrt -lexpat -lstdc++ -pthread -fopenmp
  -Wl,-rpath -Wl,/home/Elahi/delft3d_repository/src/lib -Wl,-rpath
  -Wl,/home/Elahi/Downloads/libraries/netcdf_4.4/lib -Wl,-rpath -Wl,/home/Elahi/Downloads/libraries/hdf5-1.8.13/lib&lt;br /&gt;
  &lt;strong&gt;/usr/bin/ld: cannot find -luuid                  (* but uuid
    package is there in same directory)&lt;/strong&gt;
  &lt;br /&gt; collect2: error: ld returned 1 exit status&lt;br /&gt; Makefile:631:
  recipe for target 'delwaq1' failed&lt;br /&gt; make[6]: *** [delwaq1] Error
  1&lt;br /&gt; make[6]: Leaving directory
  '/home/Elahi/delft3d_repository/src/engines_gpl/waq/packages/delwaq1/src'&lt;br /&gt;
  Makefile:755: recipe for target 'install' failed&lt;br /&gt; make[5]: ***
  [install] Error 2&lt;br /&gt; make[5]: Leaving directory
  '/home/Elahi/delft3d_repository/src/engines_gpl/waq/packages/delwaq1/src'&lt;br /&gt;
  Makefile:488: recipe for target 'install-recursive' failed&lt;br /&gt;
  make[4]: *** [install-recursive] Error 1&lt;br /&gt; make[4]: Leaving
  directory
  '/home/Elahi/delft3d_repository/src/engines_gpl/waq/packages/delwaq1'&lt;br /&gt;
  Makefile:496: recipe for target 'install-recursive' failed&lt;br /&gt;
  make[3]: *** [install-recursive] Error 1&lt;br /&gt; make[3]: Leaving
  directory
  '/home/Elahi/delft3d_repository/src/engines_gpl/waq/packages'&lt;br /&gt;
  Makefile:488: recipe for target 'install-recursive' failed&lt;br /&gt;
  make[2]: *** [install-recursive] Error 1&lt;br /&gt; make[2]: Leaving
  directory '/home/Elahi/delft3d_repository/src/engines_gpl/waq'&lt;br /&gt;
  Makefile:493: recipe for target 'install-recursive' failed&lt;br /&gt;
  make[1]: *** [install-recursive] Error 1&lt;br /&gt; make[1]: Leaving
  directory '/home/Elahi/delft3d_repository/src/engines_gpl'&lt;br /&gt;
  Makefile:548: recipe for target 'install-recursive' failed&lt;br /&gt; make:
  *** [install-recursive] Error 1&lt;/p&gt;
&lt;p&gt;&amp;lt;&amp;lt;&amp;lt;end&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;/p&gt;
&lt;p&gt;I have attached the log files. I have been trying to compile for a
  long time. Now I am getting frustrated and losing hope. Any kind of
  help or suggestion will be highly appreciated.&lt;/p&gt;</summary>
    <dc:creator>MD WASIF E ELAHI</dc:creator>
    <dc:date>2018-09-17T00:42:01Z</dc:date>
  </entry>
  <entry>
    <title>Compilation error in Fedora-25: gfortran: error: unrecognized command line.</title>
    <link rel="alternate" href="https://dlt-acc.firelay.cloud/c/message_boards/find_message?p_l_id=3231581&amp;messageId=3399029" />
    <author>
      <name>MD WASIF E ELAHI</name>
    </author>
    <id>https://dlt-acc.firelay.cloud/c/message_boards/find_message?p_l_id=3231581&amp;messageId=3399029</id>
    <updated>2018-09-12T06:45:17Z</updated>
    <published>2018-09-12T06:43:41Z</published>
    <summary type="html">&lt;p&gt;Hi, I am trying to compile delft3d in fedora-25 by following the
  steps of ubuntu installaions. &lt;/p&gt;
&lt;p&gt;I ran $ ./autogen.sh&lt;/p&gt;
&lt;p&gt;./Configure&lt;/p&gt;
&lt;p&gt;...................&lt;/p&gt;
&lt;p&gt;checking for MPI_Init in -lmpichf90... no&lt;br /&gt; checking for MPI_Init
  in -lmpi... (cached) no&lt;br /&gt; checking for MPI_Init in -lmpich...
  (cached) no&lt;br /&gt;
  &lt;strong&gt;gfortran: error: unrecognized command line option
    '-showme:link'; did you mean '--force-link'?&lt;br /&gt; gfortran: fatal
    error: no input files&lt;/strong&gt;
  &lt;br /&gt; compilation terminated.&lt;br /&gt; configure: creating
  ./config.lt&lt;br /&gt; config.lt: creating libtool&lt;br /&gt; checking for the
  extension of Delft3D plugins... .so&lt;br /&gt; checking that generated
  files are newer than configure... done&lt;br /&gt; configure: creating
  ./config.status&lt;br /&gt; config.status: creating Makefile&lt;br /&gt;
  config.status: creating engines_gpl/d_hydro/Makefile&lt;br /&gt;
  config.status: creating
  engines_gpl/d_hydro/packages/d_hydro/Makefile&lt;br /&gt; ...............................................................................................................&lt;/p&gt;
&lt;p&gt;config.status: creating utils_lgpl/ods/Makefile&lt;br /&gt; config.status:
  creating utils_lgpl/ods/packages/Makefile&lt;br /&gt; config.status:
  creating utils_lgpl/ods/packages/ods/Makefile&lt;br /&gt; config.status:
  creating utils_lgpl/ods/packages/ods/srcf/Makefile&lt;br /&gt;
  config.status: creating utils_lgpl/ods/packages/ods/src/Makefile&lt;br /&gt;
  config.status: creating config.h&lt;br /&gt; config.status: config.h is
  unchanged&lt;br /&gt; config.status: executing depfiles commands&lt;br /&gt;
  config.status: executing libtool commands&lt;br /&gt;  &lt;/p&gt;
&lt;p&gt;&amp;lt;&amp;lt;&amp;lt;end of configure&amp;gt;&amp;gt;&amp;gt;&lt;/p&gt;
&lt;p&gt;then i ran&lt;/p&gt;
&lt;p&gt;Make&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;libtool: compile:  gfortran -DHAVE_CONFIG_H -I. -I../../../../..
  -I../../../../../utils_lgpl/deltares_common/packages/deltares_common/src
  -I/include -DWITH_DELFTONLINE -O2 -ffree-line-length-none -cpp -c
  io_netcdf_version.F90  -fPIC -o .libs/io_netcdf_version.o&lt;br /&gt; f951:
  Warning: Nonexistent include directory ‘/include’
  [-Wmissing-include-dirs]&lt;br /&gt; libtool: compile:  gfortran
  -DHAVE_CONFIG_H -I. -I../../../../..
  -I../../../../../utils_lgpl/deltares_common/packages/deltares_common/src
  -I/include -DWITH_DELFTONLINE -O2 -ffree-line-length-none -cpp -c
  io_netcdf_version.F90 -o io_netcdf_version.o &amp;gt;/dev/null
  2&amp;gt;&amp;amp;1&lt;br /&gt; /bin/sh ../../../../../libtool  --tag=FC  
  --mode=compile gfortran -DHAVE_CONFIG_H -I. -I../../../../..    
  -I../../../../../utils_lgpl/deltares_common/packages/deltares_common/src
  -I/include -DWITH_DELFTONLINE   -O2  -ffree-line-length-none -cpp -c
  -o netcdf_utils.lo netcdf_utils.F90&lt;br /&gt; libtool: compile:  gfortran
  -DHAVE_CONFIG_H -I. -I../../../../..
  -I../../../../../utils_lgpl/deltares_common/packages/deltares_common/src
  -I/include -DWITH_DELFTONLINE -O2 -ffree-line-length-none -cpp -c
  netcdf_utils.F90  -fPIC -o .libs/netcdf_utils.o&lt;br /&gt;
  &lt;strong&gt;f951: Warning: Nonexistent include directory ‘/include’
    [-Wmissing-include-dirs]&lt;br /&gt; netcdf_utils.F90:33:4:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt; &lt;strong&gt;use netcdf^M&lt;br /&gt;     1&lt;br /&gt; Fatal Error: Can't open
    module file ‘netcdf.mod’ for reading at (1): No such file or
    directory&lt;br /&gt; compilation terminated.&lt;/strong&gt;
  &lt;br /&gt; Makefile:537: recipe for target 'netcdf_utils.lo' failed&lt;br /&gt;
  make[5]: *** [netcdf_utils.lo] Error 1&lt;br /&gt; make[5]: Leaving
  directory
  '/home/Elahi/delft3d_repository/src/utils_lgpl/io_netcdf/packages/io_netcdf/src'&lt;br /&gt;
  Makefile:488: recipe for target 'install-recursive' failed&lt;br /&gt;
  make[4]: *** [install-recursive] Error 1&lt;br /&gt; make[4]: Leaving
  directory
  '/home/Elahi/delft3d_repository/src/utils_lgpl/io_netcdf/packages/io_netcdf'&lt;br /&gt;
  Makefile:488: recipe for target 'install-recursive' failed&lt;br /&gt;
  make[3]: *** [install-recursive] Error 1&lt;br /&gt; make[3]: Leaving
  directory
  '/home/Elahi/delft3d_repository/src/utils_lgpl/io_netcdf/packages'&lt;br /&gt;
  Makefile:488: recipe for target 'install-recursive' failed&lt;br /&gt;
  make[2]: *** [install-recursive] Error 1&lt;br /&gt; make[2]: Leaving
  directory
  '/home/Elahi/delft3d_repository/src/utils_lgpl/io_netcdf'&lt;br /&gt;
  Makefile:498: recipe for target 'install-recursive' failed&lt;br /&gt;
  make[1]: *** [install-recursive] Error 1&lt;br /&gt; make[1]: Leaving
  directory '/home/Elahi/delft3d_repository/src/utils_lgpl'&lt;br /&gt;
  Makefile:548: recipe for target 'install-recursive' failed&lt;br /&gt; make:
  *** [install-recursive] Error 1&lt;br /&gt;  &lt;/p&gt;
&lt;p&gt;&amp;lt;&amp;lt;&amp;lt;end of configure&amp;gt;&amp;gt;&amp;gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Please help me out. How to solve these issues?&lt;/p&gt;
&lt;p&gt;Any help would be highly appreciated.&lt;br /&gt;  &lt;/p&gt;
&lt;p&gt;Wasif&lt;/p&gt;</summary>
    <dc:creator>MD WASIF E ELAHI</dc:creator>
    <dc:date>2018-09-12T06:43:41Z</dc:date>
  </entry>
</feed>
