<?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 ifort11.1 install, ifconsol.lib in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866491#M70833</link>
    <description>I am actually building at the command line. This was a simple test to make sure I can access the compiler.&lt;BR /&gt;Ultimately, I am trying to build an open source C++ project under MSYS. The project uses some third-party code written in fortran, hence the need for ifort.</description>
    <pubDate>Fri, 19 Mar 2010 17:19:18 GMT</pubDate>
    <dc:creator>h_i_gassmann</dc:creator>
    <dc:date>2010-03-19T17:19:18Z</dc:date>
    <item>
      <title>ifort11.1 install, ifconsol.lib</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866489#M70831</link>
      <description>&lt;P&gt;I downloaded and installed an evaluation copy of the ifort 11.1 fortran compiler. I wrote a very simple "hello world" program that I cannot manage to link. I am running in a virtual Windows XP box under VMWare on a Windows Vista host and get linker error&lt;/P&gt;
&lt;P&gt;LNK1104: Cannot open file 'ifconsol.lib'.&lt;/P&gt;
&lt;P&gt;I located several versions of this file and made sure that the path to one of them (Intel\\Compiler\\11.1\\060\\lib\\ia32) is included in the Lib environment variable. (I even went back to make sure that there was no confusion between 'zero' and the letter 'O' --- to no&lt;/P&gt;
&lt;P&gt;avail.) What am I doing wrong?&lt;/P&gt;</description>
      <pubDate>Fri, 19 Mar 2010 16:15:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866489#M70831</guid>
      <dc:creator>h_i_gassmann</dc:creator>
      <dc:date>2010-03-19T16:15:52Z</dc:date>
    </item>
    <item>
      <title>ifort11.1 install, ifconsol.lib</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866490#M70832</link>
      <description>If you are building in Visual Studio, the LIB environment variable is not used. Look instead at Tools &amp;gt; Optiona &amp;gt; Intel Visual Fortran &amp;gt; Compilers, and then at the setting for Library file paths. You can try clicking the Reset button to see if that solves the issue.&lt;BR /&gt;&lt;BR /&gt;You should see $(IFortInstallDir)lib\ia32 in the list. IFortInstallDir is created by the VS integration and won't be visible outside VS.&lt;BR /&gt;&lt;BR /&gt;I assume that you installed into this virtual machine.&lt;BR /&gt;</description>
      <pubDate>Fri, 19 Mar 2010 16:59:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866490#M70832</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2010-03-19T16:59:40Z</dc:date>
    </item>
    <item>
      <title>ifort11.1 install, ifconsol.lib</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866491#M70833</link>
      <description>I am actually building at the command line. This was a simple test to make sure I can access the compiler.&lt;BR /&gt;Ultimately, I am trying to build an open source C++ project under MSYS. The project uses some third-party code written in fortran, hence the need for ifort.</description>
      <pubDate>Fri, 19 Mar 2010 17:19:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866491#M70833</guid>
      <dc:creator>h_i_gassmann</dc:creator>
      <dc:date>2010-03-19T17:19:18Z</dc:date>
    </item>
    <item>
      <title>ifort11.1 install, ifconsol.lib</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866492#M70834</link>
      <description>Please show the output of the command (and the command itself) you use to link the program. Which Visual Studio version are you using that supplies the linker? Does adding /libdir: with the path to the folder help?</description>
      <pubDate>Fri, 19 Mar 2010 19:16:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866492#M70834</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2010-03-19T19:16:55Z</dc:date>
    </item>
    <item>
      <title>ifort11.1 install, ifconsol.lib</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866493#M70835</link>
      <description>First, the program:&lt;BR /&gt;&lt;BR /&gt;Y:&amp;gt; type test.f90&lt;BR /&gt;
&lt;P&gt; program test&lt;BR /&gt; print *,"Hello world"&lt;BR /&gt; stop&lt;BR /&gt; end program&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Next the output:&lt;BR /&gt;&lt;BR /&gt;Y:&amp;gt;ifort test.f90&lt;/P&gt;
&lt;P&gt;Intel Visual Fortran Compiler Professional for applications running on IA-32,&lt;/P&gt;
&lt;P&gt;Version 11.1 Build 20100203 Package ID: w_cprof_p_11.1.060&lt;/P&gt;
&lt;P&gt;Copyright (C) 1985-2010 Intel Corporation. All rights reserved.&lt;/P&gt;
&lt;P&gt;Microsoft  Incremental Linker Version 9.00.21022.08&lt;/P&gt;
&lt;P&gt;Copyright (C) Microsoft Corporation. All rights reserved.&lt;/P&gt;
&lt;P&gt;-out:junk.exe&lt;/P&gt;
&lt;P&gt;-subsystem:console&lt;/P&gt;
&lt;P&gt;junk.obj&lt;/P&gt;
&lt;P&gt;LINK : fatal error LNK1104: cannot open file 'ifconsol.lib'&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Here is what happens if I use the /libdir: directive:&lt;/P&gt;
&lt;P&gt;Y:&amp;gt;ifort test.f90 /libdir:c:\program files\Intel\Compiler\11.1\060\lib\ia32&lt;/P&gt;
&lt;P&gt;Intel Visual Fortran Compiler Professional for applications running on IA-32,&lt;/P&gt;
&lt;P&gt;Version 11.1 Build 20100203 Package ID: w_cprof_p_11.1.060&lt;/P&gt;
&lt;P&gt;Copyright (C) 1985-2010 Intel Corporation. All rights reserved.&lt;/P&gt;
&lt;P&gt;ifort: command line error: Unrecognized keyword 'c:\program' for option '/libdir'&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Using forward slashes did not help, either:&lt;/P&gt;
&lt;P&gt;Y:&amp;gt;ifort test.f90 /libdir:/c/program files/Intel/Compiler/11.1/060/lib/ia32&lt;/P&gt;
&lt;P&gt;Intel Visual Fortran Compiler Professional for applications running on IA-32,&lt;/P&gt;
&lt;P&gt;Version 11.1 Build 20100203 Package ID: w_cprof_p_11.1.060&lt;/P&gt;
&lt;P&gt;Copyright (C) 1985-2010 Intel Corporation. All rights reserved.&lt;/P&gt;
&lt;P&gt;ifort: command line error: Unrecognized keyword '/c/program' for option '/libdir'&lt;BR /&gt;&lt;BR /&gt;What else can I try?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;gus gassmann&lt;/P&gt;</description>
      <pubDate>Fri, 19 Mar 2010 19:49:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866493#M70835</guid>
      <dc:creator>h_i_gassmann</dc:creator>
      <dc:date>2010-03-19T19:49:05Z</dc:date>
    </item>
    <item>
      <title>ifort11.1 install, ifconsol.lib</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866494#M70836</link>
      <description>Add at the end of the command line:&lt;BR /&gt;&lt;BR /&gt;/link /libdir:"c\program files\Intel\Compiler\11.1\060\lib\ia32"&lt;BR /&gt;&lt;BR /&gt;How did you start this command prompt session? Did you use the "Fortran Build Environment" shortcut installed by Intel Fortran?</description>
      <pubDate>Sat, 20 Mar 2010 00:01:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866494#M70836</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2010-03-20T00:01:19Z</dc:date>
    </item>
    <item>
      <title>ifort11.1 install, ifconsol.lib</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866495#M70837</link>
      <description>&lt;DIV id="tiny_quote"&gt;
&lt;DIV style="margin-left: 2px; margin-right: 2px;"&gt;Quoting &lt;A jquery1269050921607="83" rel="/en-us/services/profile/quick_profile.php?is_paid=&amp;amp;user_id=336209" href="https://community.intel.com/en-us/profile/336209/" class="basic"&gt;Steve Lionel (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color: #e5e5e5; margin-left: 2px; margin-right: 2px; border: 1px inset; padding: 5px;"&gt;&lt;I&gt;Add at the end of the command line:&lt;BR /&gt;&lt;BR /&gt;/link /libdir:"c\program files\Intel\Compiler\11.1\060\lib\ia32"&lt;BR /&gt;&lt;BR /&gt;----&lt;BR /&gt;&lt;BR /&gt;Here is what I did:&lt;BR /&gt;&lt;BR /&gt;
&lt;P&gt;Y:&amp;gt;ifort junk.f90 /link /libdir:"c:\program files\Intel\Compiler\11.1\060\lib\ia32"&lt;/P&gt;
&lt;P&gt;Intel Visual Fortran Compiler Professional for applications running on IA-32,&lt;/P&gt;
&lt;P&gt;Version 11.1 Build 20100203 Package ID: w_cprof_p_11.1.060&lt;/P&gt;
&lt;P&gt;Copyright (C) 1985-2010 Intel Corporation. All rights reserved.&lt;/P&gt;
&lt;P&gt;Microsoft  Incremental Linker Version 9.00.21022.08&lt;/P&gt;
&lt;P&gt;Copyright (C) Microsoft Corporation. All rights reserved.&lt;/P&gt;
&lt;P&gt;-out:junk.exe&lt;/P&gt;
&lt;P&gt;-subsystem:console&lt;/P&gt;
&lt;P&gt;"/libdir:c:\program files\Intel\Compiler\11.1\060\lib\ia32"&lt;/P&gt;
&lt;P&gt;junk.obj&lt;/P&gt;
&lt;P&gt;LINK : warning LNK4044: unrecognized option &lt;BR /&gt;'/libdir:c:\program files\Intel\Compiler\11.1\060\lib\ia32'; ignored&lt;/P&gt;
&lt;P&gt;LINK : fatal error LNK1104: cannot open file 'ifconsol.lib'&lt;BR /&gt;&lt;BR /&gt;As you can see, the quotes did not make a difference.&lt;/P&gt;
-------------&lt;BR /&gt;&lt;BR /&gt;How did you start this command prompt session? Did you use the "Fortran Build Environment" shortcut installed by Intel Fortran?&lt;/I&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;BR /&gt;No. It is a standard DOS command box. I am not sure what you mean by "Fortran Build Environment".&lt;/P&gt;</description>
      <pubDate>Sat, 20 Mar 2010 02:12:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866495#M70837</guid>
      <dc:creator>h_i_gassmann</dc:creator>
      <dc:date>2010-03-20T02:12:37Z</dc:date>
    </item>
    <item>
      <title>ifort11.1 install, ifconsol.lib</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866496#M70838</link>
      <description>OK. I am making some progress. By using /libpath: instead of /libdir: I managed to get the porgram to compile and link. However, I would like to store the library path in an environment variable, so I do not have to type all this stuff in every time. Would you happen to know which variable to use? I thought it should be Lib, but this does not seem to work.</description>
      <pubDate>Sat, 20 Mar 2010 02:29:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866496#M70838</guid>
      <dc:creator>h_i_gassmann</dc:creator>
      <dc:date>2010-03-20T02:29:13Z</dc:date>
    </item>
    <item>
      <title>ifort11.1 install, ifconsol.lib</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866497#M70839</link>
      <description>The quotes would need to be as Steve suggested, around the path only. He refers to the DOS command box which you would open by clicking on the shortcut on the Start &amp;gt; Intel Software Development... &amp;gt; Intel Fortran &amp;gt; Fortran Build environment&lt;BR /&gt;That is the one which has built in the paths which the installer came up with.&lt;BR /&gt;According to your results, your Windows global environment path settings for ifort may be messed up. You might want to correct or remove any references there, using the Windows System Properties &amp;gt; Advanced &amp;gt; Environment Variables (or equivalent, depending on your Windows version).</description>
      <pubDate>Sat, 20 Mar 2010 02:29:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866497#M70839</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2010-03-20T02:29:27Z</dc:date>
    </item>
    <item>
      <title>ifort11.1 install, ifconsol.lib</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866498#M70840</link>
      <description>Thanks a lot to Steve Lionel and tim18 for helping me solve the problem. In the end it was a boneheaded mistake I made: Somehow I managed to introduce a trailing blank into the environment variable. What I am a bit puzzled about, though,is why I had to edit the environment variable at al. I would have thought that the install process should take care of that for me.&lt;BR /&gt;&lt;BR /&gt;Anyway, thanks again.</description>
      <pubDate>Sat, 20 Mar 2010 14:16:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866498#M70840</guid>
      <dc:creator>h_i_gassmann</dc:creator>
      <dc:date>2010-03-20T14:16:15Z</dc:date>
    </item>
    <item>
      <title>ifort11.1 install, ifconsol.lib</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866499#M70841</link>
      <description>My mistake - the option is /LIBPATH not /LIBDIR.&lt;BR /&gt;&lt;BR /&gt;The install does not modify the system LIB environment variable, as there are multiple build environments you might use. The best way to set up the environment, as Tim suggests, is to use the provided "Build Environment" shortcuts which set up everything as needed. For these, you need to specify whether you are building for IA-32 or Intel 64, and optionally, which VS version you want to use for its tools and libraries. For more information, please read the compiler documentation on Building Applications from the Command Line.&lt;BR /&gt;&lt;BR /&gt;What I usually do is drag a copy of the shortcut I want to my desktop.</description>
      <pubDate>Sun, 21 Mar 2010 00:56:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort11-1-install-ifconsol-lib/m-p/866499#M70841</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2010-03-21T00:56:14Z</dc:date>
    </item>
  </channel>
</rss>

