From: Steve Lionel on
On 3/24/2010 12:39 PM, mananas wrote:
> On 24 Mar, 16:33, baf<b...(a)nowhere.com> wrote:
>> On 03/24/2010 09:18 AM, mananas wrote:

>>> I am trying to compile a file on WIndows Vista and it ends up with an
>>> error that cannot access libiomp5mt.lib.
>>
>> which compiler are you using?
>
> I am using Fortran Compiler 9.0 for IA 32 Applications.

You have objects or libraries compiled with Intel Visual Fortran 11.1
and are trying to link them on a system where the Intel Fortran version
is earlier than 11.0. That won't work. libiomp5mt.lib is an Intel
Fortran OpenMP library that was introduced in version 11.0 and is not
present in older versions.

The solution is to recompile all the Fortran sources using the compiler
you have on the Vista system, or to install a more current compiler on
the Vista system.

If you need further help with Intel Fortran, please ask in our user
forums - link below.

--
Steve Lionel
Developer Products Division
Intel Corporation
Nashua, NH

For email address, replace "invalid" with "com"

User communities for Intel Software Development Products
http://software.intel.com/en-us/forums/
Intel Software Development Products Support
http://software.intel.com/sites/support/
My Fortran blog
http://www.intel.com/software/drfortran
From: mananas on
On 24 Mar, 17:13, Steve Lionel <steve.lio...(a)intel.invalid> wrote:
> On 3/24/2010 12:39 PM, mananas wrote:
>
> > On 24 Mar, 16:33, baf<b...(a)nowhere.com>  wrote:
> >> On 03/24/2010 09:18 AM, mananas wrote:
> >>> I am trying to compile a file on WIndows Vista and it ends up with an
> >>> error that cannot access libiomp5mt.lib.
>
> >> which compiler are you using?
>
> > I am using Fortran Compiler 9.0 for IA 32 Applications.
>
> You have objects or libraries compiled with Intel Visual Fortran 11.1
> and are trying to link them on a system where the Intel Fortran version
> is earlier than 11.0.  That won't work.  libiomp5mt.lib is an Intel
> Fortran OpenMP library that was introduced in version 11.0 and is not
> present in older versions.
>
> The solution is to recompile all the Fortran sources using the compiler
> you have on the Vista system, or to install a more current compiler on
> the Vista system.
>
> If you need further help with Intel Fortran, please ask in our user
> forums - link below.
>
> --
> Steve Lionel
> Developer Products Division
> Intel Corporation
> Nashua, NH
>
> For email address, replace "invalid" with "com"
>
> User communities for Intel Software Development Products
>    http://software.intel.com/en-us/forums/
> Intel Software Development Products Support
>    http://software.intel.com/sites/support/
> My Fortran blog
>    http://www.intel.com/software/drfortran

Oh, I see. Thanks a lot for the precious help!