<?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 How to refer to the Intel installation directory in a project file? in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-refer-to-the-Intel-installation-directory-in-a-project/m-p/818950#M46645</link>
    <description>Hello,&lt;BR /&gt;&lt;BR /&gt;we have the following problem:&lt;BR /&gt;A program that is written mainly in Fortran has a C++ main program to take care some&lt;BR /&gt;start-up tasks. Because of thisthe linker does not automatically include the Fortran &lt;BR /&gt;runtime libraries and we need to specify the directory where these are located explicitly.&lt;BR /&gt;&lt;BR /&gt;However that is dependent on the particular installation and the particular version.&lt;BR /&gt;&lt;BR /&gt;Is there a macro we can use (like $(ConfigurationName)or something else to make&lt;BR /&gt;the project file that describes the program and the associated build process in a way&lt;BR /&gt;that does not depend on the exact directory where the libraries are stored?&lt;BR /&gt;&lt;BR /&gt;(I thought IFIDEInstallDir might do the trick, but Visual Studio does not know &lt;BR /&gt;about it. We are using Intel Fortran 11.x)&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Arjen</description>
    <pubDate>Fri, 21 Jan 2011 12:49:19 GMT</pubDate>
    <dc:creator>Arjen_Markus</dc:creator>
    <dc:date>2011-01-21T12:49:19Z</dc:date>
    <item>
      <title>How to refer to the Intel installation directory in a project file?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-refer-to-the-Intel-installation-directory-in-a-project/m-p/818950#M46645</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;we have the following problem:&lt;BR /&gt;A program that is written mainly in Fortran has a C++ main program to take care some&lt;BR /&gt;start-up tasks. Because of thisthe linker does not automatically include the Fortran &lt;BR /&gt;runtime libraries and we need to specify the directory where these are located explicitly.&lt;BR /&gt;&lt;BR /&gt;However that is dependent on the particular installation and the particular version.&lt;BR /&gt;&lt;BR /&gt;Is there a macro we can use (like $(ConfigurationName)or something else to make&lt;BR /&gt;the project file that describes the program and the associated build process in a way&lt;BR /&gt;that does not depend on the exact directory where the libraries are stored?&lt;BR /&gt;&lt;BR /&gt;(I thought IFIDEInstallDir might do the trick, but Visual Studio does not know &lt;BR /&gt;about it. We are using Intel Fortran 11.x)&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Arjen</description>
      <pubDate>Fri, 21 Jan 2011 12:49:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-refer-to-the-Intel-installation-directory-in-a-project/m-p/818950#M46645</guid>
      <dc:creator>Arjen_Markus</dc:creator>
      <dc:date>2011-01-21T12:49:19Z</dc:date>
    </item>
    <item>
      <title>How to refer to the Intel installation directory in a project f</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-refer-to-the-Intel-installation-directory-in-a-project/m-p/818951#M46646</link>
      <description>$(IFORT_COMPILER11) is what you want. This will get you to the 11.1\nnn folder.&lt;BR /&gt;&lt;BR /&gt;Edited to correct name.</description>
      <pubDate>Fri, 21 Jan 2011 17:46:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-refer-to-the-Intel-installation-directory-in-a-project/m-p/818951#M46646</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2011-01-21T17:46:15Z</dc:date>
    </item>
    <item>
      <title>How to refer to the Intel installation directory in a project f</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-refer-to-the-Intel-installation-directory-in-a-project/m-p/818952#M46647</link>
      <description>I'm sure Steve meant to enter $(IFORT_COMPILER11). And if you're using ifort 12.n, it'll be $(IFORT_COMPILER12).</description>
      <pubDate>Fri, 21 Jan 2011 18:08:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-refer-to-the-Intel-installation-directory-in-a-project/m-p/818952#M46647</guid>
      <dc:creator>Jeffrey_A_Intel</dc:creator>
      <dc:date>2011-01-21T18:08:49Z</dc:date>
    </item>
    <item>
      <title>How to refer to the Intel installation directory in a project f</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-refer-to-the-Intel-installation-directory-in-a-project/m-p/818953#M46648</link>
      <description>Indeed it is - thanks, Jeff. I'll also note that the subfolder structure changed in version 12, so you can't just switch the environment variable names.</description>
      <pubDate>Fri, 21 Jan 2011 20:30:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-refer-to-the-Intel-installation-directory-in-a-project/m-p/818953#M46648</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2011-01-21T20:30:51Z</dc:date>
    </item>
    <item>
      <title>How to refer to the Intel installation directory in a project f</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-refer-to-the-Intel-installation-directory-in-a-project/m-p/818954#M46649</link>
      <description>Thanks for this information - it does indeed compile and link properly.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Arjen</description>
      <pubDate>Mon, 24 Jan 2011 08:02:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-refer-to-the-Intel-installation-directory-in-a-project/m-p/818954#M46649</guid>
      <dc:creator>Arjen_Markus</dc:creator>
      <dc:date>2011-01-24T08:02:56Z</dc:date>
    </item>
  </channel>
</rss>

