<?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 Use DLL on another machine in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/912006#M83632</link>
    <description>OK, I think I can avoid that OpenMP problem.</description>
    <pubDate>Sun, 17 Jan 2010 05:10:19 GMT</pubDate>
    <dc:creator>gib</dc:creator>
    <dc:date>2010-01-17T05:10:19Z</dc:date>
    <item>
      <title>Use DLL on another machine</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/911995#M83621</link>
      <description>&lt;P&gt;My apologies if this has been asked before/recently, especially if it was asked by me. :-)&lt;/P&gt;
&lt;P&gt;I am testing calling a Fortran DLL from Python, and it works fine on the machine (Windows XP, SP2) where it is built. But when I try it on another machine (Windows XP, SP3) I get this error:&lt;/P&gt;
&lt;P&gt;WindowsError: [Error 14001] This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem.&lt;/P&gt;
&lt;P&gt;The error occurs when I attempt to load the DLL, i.e. before calling a subroutine.&lt;/P&gt;
&lt;P&gt;Does this message mean that I need to copy some Intel DLLs onto this machine? There was a trial version of ifort installed, but it has expired.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2010 07:23:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/911995#M83621</guid>
      <dc:creator>gib</dc:creator>
      <dc:date>2010-01-15T07:23:14Z</dc:date>
    </item>
    <item>
      <title>Use DLL on another machine</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/911996#M83622</link>
      <description>&lt;P&gt;Try to look at dependencies of your dll (on my PC i use right-hand mouse button and "View dependencies") search for all lib*.dll which are most probably fortran libraries used by your dll.&lt;/P&gt;
&lt;P&gt;Or link dll against static libraries.&lt;/P&gt;
&lt;P&gt;Jakub&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2010 07:36:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/911996#M83622</guid>
      <dc:creator>ZlamalJakub</dc:creator>
      <dc:date>2010-01-15T07:36:35Z</dc:date>
    </item>
    <item>
      <title>Use DLL on another machine</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/911997#M83623</link>
      <description>&lt;P&gt;Yes! Static linking did the trick. Thanks a lot.&lt;/P&gt;
&lt;P&gt;I'm not sure how to use the right mouse click to view dependencies, though. Do you mean in Explorer? R-click doesn't show such an option in XP.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2010 08:44:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/911997#M83623</guid>
      <dc:creator>gib</dc:creator>
      <dc:date>2010-01-15T08:44:16Z</dc:date>
    </item>
    <item>
      <title>Use DLL on another machine</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/911998#M83624</link>
      <description>&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Yes, I meant right click in explorer on dll file. It works fine with my installation of Fortran, may be it depends on installation.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Jakub&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2010 09:10:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/911998#M83624</guid>
      <dc:creator>ZlamalJakub</dc:creator>
      <dc:date>2010-01-15T09:10:31Z</dc:date>
    </item>
    <item>
      <title>Use DLL on another machine</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/911999#M83625</link>
      <description>&lt;P&gt;A command line alternative is dumpbin /dependents some.dll&lt;/P&gt;
&lt;P&gt;The .dll collection you got from a trial installation won't stop working when the trial period ends. Current versions of ifort have a companion redistributable .dll package of which you can make unlimited use while the version is covered by your license. Older versions entitle you to copy those which your application requires.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2010 13:36:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/911999#M83625</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2010-01-15T13:36:25Z</dc:date>
    </item>
    <item>
      <title>Use DLL on another machine</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/912000#M83626</link>
      <description>&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Amazing the timeliness of this thread. I am struggling with exactly the same problem.&lt;/P&gt;
&lt;P&gt;I have an app that links at run time with multiple or no DLL's depending on the simulation setup. I had the same problem in the past when using an older version of Visual FORTRAN that I fixed by adding the FORTRAN libraries. I now am using VF 11.0 and can't get it to work.&lt;/P&gt;
&lt;P&gt;Here is what I have done, using the dependency walker I isolated the DLL's and put them in the directory with the executable on the target machine. Still get the same error # 14001.&lt;/P&gt;
&lt;P&gt;Not sure what you mean link statically.&lt;/P&gt;
&lt;P&gt;Thanks in advance,&lt;/P&gt;
&lt;P&gt;Mark&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2010 15:59:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/912000#M83626</guid>
      <dc:creator>stein_vt</dc:creator>
      <dc:date>2010-01-15T15:59:09Z</dc:date>
    </item>
    <item>
      <title>Use DLL on another machine</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/912001#M83627</link>
      <description>That does it. Thanks.</description>
      <pubDate>Sat, 16 Jan 2010 07:31:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/912001#M83627</guid>
      <dc:creator>gib</dc:creator>
      <dc:date>2010-01-16T07:31:46Z</dc:date>
    </item>
    <item>
      <title>Use DLL on another machine</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/912002#M83628</link>
      <description>&lt;P&gt;Project &amp;gt; Properties &amp;gt; Fortran &amp;gt; Libraries &amp;gt; Runtime Library&lt;/P&gt;
&lt;P&gt;select Multithreaded instead of Multithread DLL (or the Debug versions thereof).&lt;/P&gt;
&lt;P&gt;This links the libraries into the executable (i.e. statically), otherwise the executable will use the DLLs (dynamic libraries) on the host machine, which might not be compatible. I don't understand why copying the appropriate DLLs into the working directory doesn't work.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Jan 2010 07:38:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/912002#M83628</guid>
      <dc:creator>gib</dc:creator>
      <dc:date>2010-01-16T07:38:06Z</dc:date>
    </item>
    <item>
      <title>Use DLL on another machine</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/912003#M83629</link>
      <description>The error noted in this thread is due to needing the Visual C++ redistributables shared assembly installed on the target system. Those DLLs use manifest files and simply copying DLLs does not work. See &lt;A href="http://software.intel.com/en-us/articles/redistribution-of-application-binaries-built-for-microsoft-windows/"&gt;this article&lt;/A&gt; for more information - particularly the PDF attached to it.</description>
      <pubDate>Sat, 16 Jan 2010 15:37:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/912003#M83629</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2010-01-16T15:37:28Z</dc:date>
    </item>
    <item>
      <title>Use DLL on another machine</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/912004#M83630</link>
      <description>&lt;P&gt;Steve, in that pdf, under building a program with statically-linked runtime libraries from the command line, it says:&lt;/P&gt;
&lt;P&gt;Use Qopenmp-link:static to link the static OpenMP runtime library. ... Linking static OpenMP runtime library is not recommended.&lt;/P&gt;
&lt;P&gt;How is that statement to be interpreted?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Jan 2010 20:27:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/912004#M83630</guid>
      <dc:creator>gib</dc:creator>
      <dc:date>2010-01-16T20:27:41Z</dc:date>
    </item>
    <item>
      <title>Use DLL on another machine</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/912005#M83631</link>
      <description>&lt;P&gt;It should be interpreted as "do this if you think you have to, but it can cause other problems". Generally, the issue is that if you are mixing with other code that references the DLL OpenMP libraries, bad things can happen by having two OpenMP libraries active. (Usually you get an error message about this but not always.)&lt;/P&gt;
&lt;P&gt;For people who absolutely want everything static, we provide the option, but we'd prefer that you didn't use it.&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jan 2010 04:19:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/912005#M83631</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2010-01-17T04:19:20Z</dc:date>
    </item>
    <item>
      <title>Use DLL on another machine</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/912006#M83632</link>
      <description>OK, I think I can avoid that OpenMP problem.</description>
      <pubDate>Sun, 17 Jan 2010 05:10:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Use-DLL-on-another-machine/m-p/912006#M83632</guid>
      <dc:creator>gib</dc:creator>
      <dc:date>2010-01-17T05:10:19Z</dc:date>
    </item>
  </channel>
</rss>

