<?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 I would say that's a bug. in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125764#M132845</link>
    <description>&lt;P&gt;I would say that's a bug. Please report it through the &lt;A href="http://www.intel.com/supporttickets"&gt;Service Center&lt;/A&gt;.&lt;/P&gt;</description>
    <pubDate>Mon, 12 Jun 2017 13:09:18 GMT</pubDate>
    <dc:creator>Steve_Lionel</dc:creator>
    <dc:date>2017-06-12T13:09:18Z</dc:date>
    <item>
      <title>which include file did ifort use?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125760#M132841</link>
      <description>&lt;P&gt;I am using make for a project and include a few directories on the command line to look for include files in.&lt;/P&gt;

&lt;P&gt;My question is, how do I find out after the make is complete which exact file ifort used during the make process for a given source file?&lt;/P&gt;

&lt;P&gt;Sometimes there are multiple include files with the same name in different directories, etc. I know ifort will complain if it cannot firgure it out uniquely, but how do I found out which include file was used for a specific compile of a certain file after the making is finished?&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2017 17:46:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125760#M132841</guid>
      <dc:creator>ben_barrowes</dc:creator>
      <dc:date>2017-06-09T17:46:20Z</dc:date>
    </item>
    <item>
      <title>Welcome!  Glad you followed</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125761#M132842</link>
      <description>&lt;P&gt;Welcome! &amp;nbsp;Glad you followed up on my suggestion at comp.lang.fortran and cross-posted here.&lt;/P&gt;

&lt;P&gt;Take a look here and use /gen-dep compiler option:&amp;nbsp;https://software.intel.com/en-us/fortran-compiler-18.0-developer-guide-and-reference-gen-dep&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2017 19:37:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125761#M132842</guid>
      <dc:creator>FortranFan</dc:creator>
      <dc:date>2017-06-09T19:37:26Z</dc:date>
    </item>
    <item>
      <title>That is exactly what I was</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125762#M132843</link>
      <description>&lt;P&gt;Let me try that.&lt;/P&gt;

&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2017 13:07:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125762#M132843</guid>
      <dc:creator>ben_barrowes</dc:creator>
      <dc:date>2017-06-10T13:07:00Z</dc:date>
    </item>
    <item>
      <title>Wait, after testing this, I</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125763#M132844</link>
      <description>&lt;P&gt;Wait, after testing this, I found that gen-dep does not report the path to the include'd file.&lt;/P&gt;

&lt;P&gt;For example, I have test1.f90 in the top level directory. Then I have sub3.f90 containing sub3 in directory t2 and sub2.f90 containing sub2 in the directory t1. The file t1/sub2.f90 include's inc3 in the directory t2. But when I compile with gen-dep, the path to inc3 is not listed:&lt;/P&gt;

&lt;P&gt;ifort -g -o test1 test1.f90 t1/sub2.f90 t2/sub3.f90 -It2 -save-temps -gen-dep&lt;/P&gt;

&lt;P&gt;sub1__genmod.mod : \&lt;BR /&gt;
	&amp;nbsp; test1.f90&lt;/P&gt;

&lt;P&gt;test1.o : \&lt;BR /&gt;
	&amp;nbsp; test1.f90 inc1 inc1&lt;/P&gt;

&lt;P&gt;sub2__genmod.mod : \&lt;BR /&gt;
	&amp;nbsp; t1/sub2.f90&lt;/P&gt;

&lt;P&gt;sub2.o : \&lt;BR /&gt;
	&amp;nbsp; t1/sub2.f90 inc3&amp;nbsp;&amp;nbsp; ******* note that path to inc3 is not here. I was hoping for t2/inc3 instead of just inc3&lt;/P&gt;

&lt;P&gt;sub3__genmod.mod : \&lt;BR /&gt;
	&amp;nbsp; t2/sub3.f90&lt;/P&gt;

&lt;P&gt;sub3.o : \&lt;BR /&gt;
	&amp;nbsp; t2/sub3.f90 inc3&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;So, is there any way to find the path to the include file with ifort?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I just tested this with gfortran and it *does* output the include file path:&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;gfortran -g test1.f90 t1/sub2.f90 t2/sub3.f90 -It2 -M -cpp&lt;/P&gt;

&lt;P&gt;test1.o: test1.f90 inc1 inc1&lt;BR /&gt;
	sub2.o: t1/sub2.f90 t2/inc3&lt;BR /&gt;
	sub3.o: t2/sub3.f90 t2/inc3&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Is this a bug in ifort?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2017 11:46:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125763#M132844</guid>
      <dc:creator>ben_barrowes</dc:creator>
      <dc:date>2017-06-12T11:46:58Z</dc:date>
    </item>
    <item>
      <title>I would say that's a bug.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125764#M132845</link>
      <description>&lt;P&gt;I would say that's a bug. Please report it through the &lt;A href="http://www.intel.com/supporttickets"&gt;Service Center&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2017 13:09:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125764#M132845</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2017-06-12T13:09:18Z</dc:date>
    </item>
    <item>
      <title>I noted Steves' #5  ("Please</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125765#M132846</link>
      <description>&lt;P&gt;I noted Steves' #5 &amp;nbsp;("&lt;SPAN style="font-size: 12px;"&gt;Please report it through the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="http://www.intel.com/supporttickets" style="font-size: 12px;"&gt;Service Center&lt;/A&gt;&lt;SPAN style="font-size: 12px;"&gt;.")&amp;nbsp;&lt;/SPAN&gt;and I think I saw a similar comment from one of the current Intel staff a few days back. It seems &amp;nbsp;that users report issues via the user Forums do I infer that is now not the preferred route?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2017 13:24:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125765#M132846</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2017-06-12T13:24:00Z</dc:date>
    </item>
    <item>
      <title>I heard from one of my former</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125766#M132847</link>
      <description>&lt;P&gt;I heard from one of my former colleagues that customers are now being encouraged to report problems through the Service Center. I understand this - it makes it easier for the support folk to track issues and works better with the internal support processes. You're welcome to ask about possible bugs here - sometimes a discussion is worthwhile.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2017 14:22:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125766#M132847</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2017-06-12T14:22:56Z</dc:date>
    </item>
    <item>
      <title>I guess it nicely resolves</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125767#M132848</link>
      <description>&lt;P&gt;I guess it nicely resolves &amp;nbsp;this issue of which fixes are in a new release or not. Having &amp;nbsp;invisible issues is bound to lead to better customers satisfaction on the not being able to track things problem.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2017 15:01:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125767#M132848</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2017-06-12T15:01:21Z</dc:date>
    </item>
    <item>
      <title>Quote:Steve Lionel (Ret.)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125768#M132849</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Steve Lionel (Ret.) wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;I heard from one of my former colleagues that customers are now being encouraged to report problems through the Service Center. I understand this - it makes it easier for the support folk to track issues and works better with the internal support processes. You're welcome to ask about possible bugs here - sometimes a discussion is worthwhile.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Hopefully Intel team will make a "formal"&amp;nbsp;announcement for the readers with relevant details on the whats and how-to's etc. on working with Service Center.&lt;/P&gt;

&lt;P&gt;Also, it will be great if the Online Service Center items can have permissions and attributes that can be agreed upon on an incident-by-incident basis by Intel and the customer: e.g., private or public in terms of visibility to other Service Center account holders and read-only versus read/write in terms of being able to contribute to the incident resolution process.&lt;/P&gt;

&lt;P&gt;I feel many aspects of interest to me are generic enough in terms of Fortran standard revisions or Intel compiler options or optimizations or integration with Visual Studio that I feel will be alright if any other interested customers were able to read and perhaps even contribute to &amp;nbsp; Similarly, it will be of interest &lt;SPAN style="background-color: rgb(246, 213, 217);"&gt;to&amp;nbsp;&lt;/SPAN&gt;me if I could search for incidents and read back-and-forth comments and determine resolution status, provided the OP the customer who initiated the incident has provided such a permission.&lt;/P&gt;

&lt;P&gt;It will be up to Intel, of course, if they wish to open up such aspects at the Service Center to only those customers who have active support subscription, it could even become a marketing incentive to get customers to keep renewing their subscriptions!&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2017 16:11:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125768#M132849</guid>
      <dc:creator>FortranFan</dc:creator>
      <dc:date>2017-06-12T16:11:10Z</dc:date>
    </item>
    <item>
      <title>Quote:ben_barrowes wrote:</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125769#M132850</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;ben_barrowes wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Wait, after testing this, I found that gen-dep does not report the path to the include'd file ..&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;@&lt;SPAN style="font-size: 13.008px;"&gt;ben_barrowes,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 13.008px;"&gt;Re: "wait ..", is it then fair to assume you yourself removed the "Best Reply" flag on the first response (currently showing up as Quote #2) that you yourself must have applied at first, this perhaps on account of the limitation in the Intel facility which doesn't work fully with Fortran INCLUDE files?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2017 16:27:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/which-include-file-did-ifort-use/m-p/1125769#M132850</guid>
      <dc:creator>FortranFan</dc:creator>
      <dc:date>2017-06-12T16:27:10Z</dc:date>
    </item>
  </channel>
</rss>

