<?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 IMSL (Windows) troubles - is this the right forum? in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Windows-troubles-is-this-the-right-forum/m-p/847362#M64775</link>
    <description>You can ignore those warnings - they won't cause any problems. The symbols come from IMSL.</description>
    <pubDate>Tue, 13 Apr 2010 14:53:02 GMT</pubDate>
    <dc:creator>Steven_L_Intel1</dc:creator>
    <dc:date>2010-04-13T14:53:02Z</dc:date>
    <item>
      <title>IMSL (Windows) troubles - is this the right forum?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Windows-troubles-is-this-the-right-forum/m-p/847357#M64770</link>
      <description>Is this the right place to seek help on linking in IMSL functions, if not can someone point me in the right direction?&lt;BR /&gt;&lt;BR /&gt;Thanks!</description>
      <pubDate>Tue, 13 Apr 2010 12:40:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Windows-troubles-is-this-the-right-forum/m-p/847357#M64770</guid>
      <dc:creator>chris-sn</dc:creator>
      <dc:date>2010-04-13T12:40:32Z</dc:date>
    </item>
    <item>
      <title>IMSL (Windows) troubles - is this the right forum?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Windows-troubles-is-this-the-right-forum/m-p/847358#M64771</link>
      <description>Yes, it is, if you are using the IMSL from Intel Visual Fortran. I suggest you read &lt;A target="_blank" href="http://software.intel.com/en-us/articles/installing-and-using-the-imsl-libraries/"&gt;this &lt;/A&gt;first to see if it helps.</description>
      <pubDate>Tue, 13 Apr 2010 13:37:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Windows-troubles-is-this-the-right-forum/m-p/847358#M64771</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2010-04-13T13:37:45Z</dc:date>
    </item>
    <item>
      <title>IMSL (Windows) troubles - is this the right forum?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Windows-troubles-is-this-the-right-forum/m-p/847359#M64772</link>
      <description>OK, thanks, I did indeed the article suggested and have (I hope) followed its instructions.&lt;BR /&gt;&lt;BR /&gt;In case it's relevant, we are dealing here with a recently-converted CVF project pair in which a FORTRAN computational engine using IMSL is linked as a static library and used by a thin C++ wrapper linked as a dll.&lt;BR /&gt;&lt;BR /&gt;It turns out that in this project the only use of IMSL is in a couple of FORTRAN lines of the form&lt;BR /&gt;ABCD=QA.ix.F&lt;BR /&gt;Which could easily be rewritten, but we want to use IMSL in a different project so we persevered...&lt;BR /&gt;&lt;BR /&gt;Based on an article we found we replaced the old USE IMSL with USE LINEAR_OPERATORS&lt;BR /&gt;&lt;BR /&gt;We then got through compilation but the dll link failed with&lt;BR /&gt;&lt;BR /&gt;error LNK2019: unresolved external symbol _OPERATION_IX_mp_DIMDVP&lt;BR /&gt;&lt;BR /&gt;We eventually discovered the libs in Program Files\VNI\imsl\fnl600\IA32\lib and by trial and error chucked imsl.lib and imsl_dll.lib in as additional dependencies to the Linker input. This moved us on and now we get&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;1&amp;gt;imsl.lib(operation_ix.obj) : error LNK2019: unresolved external symbol ___kmpc_global_thread_num referenced in function _OPERATION_IX_mp_ZIBZBP&lt;/P&gt;&lt;P&gt;1&amp;gt;imsl.lib(operation_ix.obj) : error LNK2019: unresolved external symbol ___kmpc_threadprivate_cached referenced in function _OPERATION_IX_mp_ZIBZBP&lt;BR /&gt;&lt;BR /&gt;At this point I start to run out ofideas, plus I get a growing feeling that it shouldn't be this hard and I am going about it the wrong way... :-(&lt;/P&gt;</description>
      <pubDate>Tue, 13 Apr 2010 14:12:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Windows-troubles-is-this-the-right-forum/m-p/847359#M64772</guid>
      <dc:creator>chris-sn</dc:creator>
      <dc:date>2010-04-13T14:12:35Z</dc:date>
    </item>
    <item>
      <title>IMSL (Windows) troubles - is this the right forum?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Windows-troubles-is-this-the-right-forum/m-p/847360#M64773</link>
      <description>Ok. You have (perhaps understandably) missed the section of our documentation on using IMSL - this is under Building Applications &amp;gt; Using Libraries &amp;gt; Using the IMSL libraries.&lt;BR /&gt;&lt;BR /&gt;Instead of naming individual libraries in the link line, the recommended method is to add a line as follows to one of your sources:&lt;BR /&gt;&lt;BR /&gt;INCLUDE 'link_fnl_static.h'&lt;BR /&gt;&lt;BR /&gt;If you have not also enabled OpenMP (which the IMSL documentation recommends), then add the following line as well:&lt;BR /&gt;&lt;BR /&gt;!DEC$ OBJCOMMENT LIB:'libiomp5md.lib'&lt;BR /&gt;&lt;BR /&gt;It is this latter that will resolve the __kmpc symbols.&lt;BR /&gt;&lt;BR /&gt;Since you are using LINEAR_OPERATORS, I will also comment that if you decide to build a 64-bit application, please read &lt;A target="_blank" href="http://software.intel.com/en-us/articles/internal-compiler-error-when-using-imsl-modules-imsl_libraries-or-linear_operators-intel-64/"&gt;this article&lt;/A&gt; to get replacement modules. 32-bit doesn't need this.</description>
      <pubDate>Tue, 13 Apr 2010 14:22:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Windows-troubles-is-this-the-right-forum/m-p/847360#M64773</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2010-04-13T14:22:11Z</dc:date>
    </item>
    <item>
      <title>IMSL (Windows) troubles - is this the right forum?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Windows-troubles-is-this-the-right-forum/m-p/847361#M64774</link>
      <description>Thanks again Steve - that has sorted it.&lt;BR /&gt;&lt;BR /&gt;I meant to add, I am also getting these warning messages :&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;2&amp;gt;tm_calc_lib.lib(INGPLC.obj) : warning LNK4049: locally defined symbol _MPIPRIV1 imported&lt;/P&gt;&lt;P&gt;2&amp;gt;tm_calc_lib.lib(INGPLC.obj) : warning LNK4049: locally defined symbol _MPIPRIV2 imported&lt;/P&gt;&lt;P&gt;2&amp;gt;tm_calc_lib.lib(INGPLC.obj) : warning LNK4049: locally defined symbol _MPIPRIVC imported&lt;/P&gt;&lt;BR /&gt;where INGPLC.OBJ is the compiled version of the fortran file which calls IMSL.&lt;BR /&gt;&lt;BR /&gt;Do you recognise these - I don't have any matches for MPIPRIV in my source code. Don't know yet if it is going to cause trouble...</description>
      <pubDate>Tue, 13 Apr 2010 14:42:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Windows-troubles-is-this-the-right-forum/m-p/847361#M64774</guid>
      <dc:creator>chris-sn</dc:creator>
      <dc:date>2010-04-13T14:42:27Z</dc:date>
    </item>
    <item>
      <title>IMSL (Windows) troubles - is this the right forum?</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Windows-troubles-is-this-the-right-forum/m-p/847362#M64775</link>
      <description>You can ignore those warnings - they won't cause any problems. The symbols come from IMSL.</description>
      <pubDate>Tue, 13 Apr 2010 14:53:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IMSL-Windows-troubles-is-this-the-right-forum/m-p/847362#M64775</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2010-04-13T14:53:02Z</dc:date>
    </item>
  </channel>
</rss>

