<?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 No, as mentioned above, in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101009#M126725</link>
    <description>No, as mentioned above, static openmp support was withdrawn.</description>
    <pubDate>Sun, 24 Jan 2016 18:58:44 GMT</pubDate>
    <dc:creator>TimP</dc:creator>
    <dc:date>2016-01-24T18:58:44Z</dc:date>
    <item>
      <title>Openmp Static Linking</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101006#M126722</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I use &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Intel Parallel Studio XE 2013 with Visual Studio Shell.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I'm trying to compile fortran code with openmp with static linking. It compiles and produces executable. But the executable does not work on another computer because of missing libiomp5md.dll file. I have used&amp;nbsp;&lt;/SPAN&gt;&lt;EM style="font-size: 12px; line-height: 18px;"&gt;&amp;nbsp;&lt;/EM&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;/MT /Qopenmp-link:static command line for both fortran compile and linker options but it does not generate fully static compiled executable. Is there any way to fix this problem?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks in advcance.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Jan 2016 16:45:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101006#M126722</guid>
      <dc:creator>IntFortran</dc:creator>
      <dc:date>2016-01-24T16:45:41Z</dc:date>
    </item>
    <item>
      <title>I believe that what is stated</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101007#M126723</link>
      <description>&lt;P&gt;I believe that what is stated in&amp;nbsp;https://software.intel.com/en-us/articles/openmp-static-library-deprecation-in-intelr-mkl-on-microsoft-windows still applies. In other words, if you want OpenMP support, your users need the DLL.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Jan 2016 18:11:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101007#M126723</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2016-01-24T18:11:57Z</dc:date>
    </item>
    <item>
      <title>The program was built by</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101008#M126724</link>
      <description>&lt;P&gt;The program was built by using an older version of intel fortran compiler and there is no need for additional dll files. When Intel Fortran Compiler 2013 version is used for building the executable, this problem is encountered. I have searched the web for fully static executable but the solutions given did not work for me. I think i make mistake about command line.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Jan 2016 18:20:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101008#M126724</guid>
      <dc:creator>IntFortran</dc:creator>
      <dc:date>2016-01-24T18:20:44Z</dc:date>
    </item>
    <item>
      <title>No, as mentioned above,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101009#M126725</link>
      <description>No, as mentioned above, static openmp support was withdrawn.</description>
      <pubDate>Sun, 24 Jan 2016 18:58:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101009#M126725</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2016-01-24T18:58:44Z</dc:date>
    </item>
    <item>
      <title>Quote:sonicc34 wrote:</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101010#M126726</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;sonicc34 wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;The program was built by using an older version of intel fortran compiler and there is no need for additional dll files.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Let's be consistent: if you still have that older version, and it provided a static OpenMP library, EXEs built with that combination do not need a DLL for OpenMP support. However, I gathered that you want to use the newer compiler, and the newer compiler does not provide a static OpenMP library. Generally, using an older runtime library with a newer compiler will not work, but you can certainly try.&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 16.26px; line-height: 16.26px;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;sonicc34 wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;When Intel Fortran Compiler 2013 version is used for building the executable, this problem is encountered. I have searched the web for fully static executable but the solutions given did not work for me. I think i make mistake about command line.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;I do not understand this. How can you search the web for executables when the executable in question is the one built by you? Command line switches cannot help when the static library you seek is not available for the newer compiler.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2016 00:09:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101010#M126726</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2016-01-25T00:09:00Z</dc:date>
    </item>
    <item>
      <title>I think sonicc34 meant</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101011#M126727</link>
      <description>&lt;P&gt;I think sonicc34 meant searching the web for a way to generate fully-static executables. As you say, that's no longer available for OpenMP applications (and never was for applications using coarrays.)&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2016 00:22:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101011#M126727</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2016-01-25T00:22:28Z</dc:date>
    </item>
    <item>
      <title>Quote:Steve Lionel (Intel)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101012#M126728</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Steve Lionel (Intel) wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;I think sonicc34 meant searching the web for a way to generate fully-static executables. As you say, that's no longer available for OpenMP applications (and never was for applications using coarrays.)&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;You are right about the web search Steve. I have found this post where you mention about static linking in your last comment.&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&lt;A href="https://software.intel.com/en-us/forums/intel-visual-fortran-compiler-for-windows/topic/291216" target="_blank"&gt;https://software.intel.com/en-us/forums/intel-visual-fortran-compiler-for-windows/topic/291216&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;But &lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;/Qopenmp-link:static command line does not work.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2016 22:04:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101012#M126728</guid>
      <dc:creator>IntFortran</dc:creator>
      <dc:date>2016-01-25T22:04:41Z</dc:date>
    </item>
    <item>
      <title>What does "not work" mean?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101013#M126729</link>
      <description>&lt;P&gt;What does "not work" mean? What error do you get?&lt;/P&gt;

&lt;P&gt;I'll comment that this option became unsupported a couple of releases ago, but I think the one you say you're using still had it. Please ZIP the buildlog.htm from a rebuild of your project and attach the ZIP, or show us the commands you're using including plus the output of "ifort /v".&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2016 22:22:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101013#M126729</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2016-01-25T22:22:34Z</dc:date>
    </item>
    <item>
      <title>I just used  /Qopenmp-link</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101014#M126730</link>
      <description>&lt;P&gt;I just used&amp;nbsp;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;&amp;nbsp;/Qopenmp-link:static command. I use vsersion 2013 and follwing line is written in the bıildlog:&lt;/SPAN&gt;&lt;/P&gt;

&lt;PRE&gt;ifort: command line remark #10148: option '/Qopenmp-link:static' not supported
&lt;/PRE&gt;

&lt;P&gt;I think i should include libiomp5md.dll into setup package. Thanks for your help.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2016 21:16:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101014#M126730</guid>
      <dc:creator>IntFortran</dc:creator>
      <dc:date>2016-01-26T21:16:24Z</dc:date>
    </item>
    <item>
      <title>Ok - I checked the release</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101015#M126731</link>
      <description>&lt;P&gt;Ok - I checked the release notes and the removal of the static OpenMP libraries was in that version.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2016 21:49:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-Static-Linking/m-p/1101015#M126731</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2016-01-26T21:49:51Z</dc:date>
    </item>
  </channel>
</rss>

