<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic The warning would have been in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968647#M96491</link>
    <description>&lt;P&gt;The warning would have been caused by a command such as [bash]ifort -c sig2d.o[/bash] possibly with other compiler options. The command does not make sense, since no Fortran source is specified; hence the warning, &amp;nbsp;The question then is, did &lt;STRONG&gt;make&lt;/STRONG&gt; generate such a command from the makefile? When I ran make on your latest makefile, I did not get this warning.&lt;/P&gt;
&lt;P&gt;It is possible that the makefile that you are using is not quite the same as that which you posted. Please check. Another thing to try is to clean all old object files and rebuild.&lt;/P&gt;</description>
    <pubDate>Mon, 05 Aug 2013 08:06:00 GMT</pubDate>
    <dc:creator>mecej4</dc:creator>
    <dc:date>2013-08-05T08:06:00Z</dc:date>
    <item>
      <title>Error #10236: File not found</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968638#M96482</link>
      <description>&lt;P&gt;Hi guys!&lt;/P&gt;
&lt;P&gt;I'm in the process of converting some older code form the 90s to use some of the newer libraries (multi-threaded LAPACK/BLAS). I'm having a problem with one code. I believe I've managed to correct the library dependencies but I get the following error when I try to compile and link it:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;ifort: error #10236: File not found:&amp;nbsp; 'sig2d.exe'&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;sig2d.exe is the name of the target executable that I'm trying to create. Can anybody provide some insight into what the problem could be?&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Sun, 04 Aug 2013 05:47:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968638#M96482</guid>
      <dc:creator>Matt_B_4</dc:creator>
      <dc:date>2013-08-04T05:47:58Z</dc:date>
    </item>
    <item>
      <title>Can you upload a Makefile (or</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968639#M96483</link>
      <description>&lt;P&gt;Can you upload a Makefile (or your command line) and build log? &amp;nbsp;That error needs some context.to be able to provide any helpful feedback.&lt;/P&gt;</description>
      <pubDate>Sun, 04 Aug 2013 06:33:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968639#M96483</guid>
      <dc:creator>Casey</dc:creator>
      <dc:date>2013-08-04T06:33:30Z</dc:date>
    </item>
    <item>
      <title>Whoops, I don't think it</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968640#M96484</link>
      <description>&lt;P&gt;Whoops, I don't think it uploaded.&lt;/P&gt;</description>
      <pubDate>Sun, 04 Aug 2013 06:46:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968640#M96484</guid>
      <dc:creator>Matt_B_4</dc:creator>
      <dc:date>2013-08-04T06:46:59Z</dc:date>
    </item>
    <item>
      <title>Here is the exact makefile I</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968641#M96485</link>
      <description>&lt;P&gt;Here is the exact makefile I am using and the output to the console. Thanks.&lt;/P&gt;</description>
      <pubDate>Sun, 04 Aug 2013 06:47:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968641#M96485</guid>
      <dc:creator>Matt_B_4</dc:creator>
      <dc:date>2013-08-04T06:47:44Z</dc:date>
    </item>
    <item>
      <title>Take the "-c" flag out of</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968642#M96486</link>
      <description>&lt;P&gt;Take the "-c" flag out of this line:&lt;/P&gt;
&lt;P&gt;$(FC) -o -c $@ $(OBJS) $(LDFLAGS) $(LIBS) ../../../lib/$(ACAL) ../../../lib/libutil.a&lt;/P&gt;
&lt;P&gt;The -c tells the compiler to compile but not link, which is not what you want. &amp;nbsp;Also the -c is getting in the way of -o so that sgid.exe is interpreted as an input file, not output. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Aug 2013 06:57:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968642#M96486</guid>
      <dc:creator>Casey</dc:creator>
      <dc:date>2013-08-04T06:57:34Z</dc:date>
    </item>
    <item>
      <title>Ok, that compiles without</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968643#M96487</link>
      <description>&lt;P&gt;Ok, that compiles without errors, but now I get warnings:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;ifort: warning #10145: no action performed for file 'sig2d.o'&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;I thought it had something to do with the format of the source...&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Aug 2013 07:46:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968643#M96487</guid>
      <dc:creator>Matt_B_4</dc:creator>
      <dc:date>2013-08-04T07:46:32Z</dc:date>
    </item>
    <item>
      <title>any ideas about the error</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968644#M96488</link>
      <description>&lt;P&gt;any ideas about the error #10145? im on a time crunch to get these codes converted. Thanks!&lt;/P&gt;</description>
      <pubDate>Sun, 04 Aug 2013 21:11:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968644#M96488</guid>
      <dc:creator>Matt_B_4</dc:creator>
      <dc:date>2013-08-04T21:11:49Z</dc:date>
    </item>
    <item>
      <title>Please post the current</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968645#M96489</link>
      <description>&lt;P&gt;Please post the current version of the makefile that causes the error message to be issued. You posted an older version earlier, and you indicate that you have made some changes to it, but we do not know what those were.&lt;/P&gt;</description>
      <pubDate>Sun, 04 Aug 2013 21:37:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968645#M96489</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2013-08-04T21:37:06Z</dc:date>
    </item>
    <item>
      <title>Thanks for the response. This</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968646#M96490</link>
      <description>&lt;P&gt;Thanks for the response. This is the latest version of the makefile.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2013 07:32:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968646#M96490</guid>
      <dc:creator>Matt_B_4</dc:creator>
      <dc:date>2013-08-05T07:32:39Z</dc:date>
    </item>
    <item>
      <title>The warning would have been</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968647#M96491</link>
      <description>&lt;P&gt;The warning would have been caused by a command such as [bash]ifort -c sig2d.o[/bash] possibly with other compiler options. The command does not make sense, since no Fortran source is specified; hence the warning, &amp;nbsp;The question then is, did &lt;STRONG&gt;make&lt;/STRONG&gt; generate such a command from the makefile? When I ran make on your latest makefile, I did not get this warning.&lt;/P&gt;
&lt;P&gt;It is possible that the makefile that you are using is not quite the same as that which you posted. Please check. Another thing to try is to clean all old object files and rebuild.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2013 08:06:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968647#M96491</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2013-08-05T08:06:00Z</dc:date>
    </item>
    <item>
      <title>The latest makefile was</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968648#M96492</link>
      <description>&lt;P&gt;The latest makefile was copied directly from the build directory I was using in VMware into windows and then uploaded here, so it is the latest version.&lt;/P&gt;
&lt;P&gt;I have been performing a &lt;STRONG&gt;make clean&lt;/STRONG&gt; prior to rebuilding.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2013 16:58:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Error-10236-File-not-found/m-p/968648#M96492</guid>
      <dc:creator>Matt_B_4</dc:creator>
      <dc:date>2013-08-05T16:58:00Z</dc:date>
    </item>
  </channel>
</rss>

