<?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 Creating dll from fortran file in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182026#M149018</link>
    <description>&lt;P&gt;I have received a fortran file from a client. I need to create a dll file for that fortran file and move it to my current working folder.&lt;/P&gt;

&lt;P&gt;My analysis software( completely different engineering analysis software) will read that file.&lt;/P&gt;

&lt;P&gt;Now today I installed Visual studio 2017 and complete Intel parallel studio XE 2018 evaluation version.&lt;/P&gt;

&lt;P&gt;1) I have two questions. How do i convert this fortran file to dll file ? Can it be done in the Visual studio software&amp;nbsp; ?&lt;/P&gt;

&lt;P&gt;If I have to do it in the Visal Studio Shell, please give me the commands for that.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;2) I am trying to open a new fortran project type in Visual studio. But there is no such type displayed. How do i do this ?&lt;/P&gt;

&lt;P&gt;Please explain it in simple terms. I am not a software guy.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks a lot.&lt;/P&gt;

&lt;P&gt;Regards&lt;/P&gt;

&lt;P&gt;AK&lt;/P&gt;</description>
    <pubDate>Thu, 11 Jan 2018 10:02:21 GMT</pubDate>
    <dc:creator>Muthukrishnan__DAK</dc:creator>
    <dc:date>2018-01-11T10:02:21Z</dc:date>
    <item>
      <title>Creating dll from fortran file</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182026#M149018</link>
      <description>&lt;P&gt;I have received a fortran file from a client. I need to create a dll file for that fortran file and move it to my current working folder.&lt;/P&gt;

&lt;P&gt;My analysis software( completely different engineering analysis software) will read that file.&lt;/P&gt;

&lt;P&gt;Now today I installed Visual studio 2017 and complete Intel parallel studio XE 2018 evaluation version.&lt;/P&gt;

&lt;P&gt;1) I have two questions. How do i convert this fortran file to dll file ? Can it be done in the Visual studio software&amp;nbsp; ?&lt;/P&gt;

&lt;P&gt;If I have to do it in the Visal Studio Shell, please give me the commands for that.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;2) I am trying to open a new fortran project type in Visual studio. But there is no such type displayed. How do i do this ?&lt;/P&gt;

&lt;P&gt;Please explain it in simple terms. I am not a software guy.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks a lot.&lt;/P&gt;

&lt;P&gt;Regards&lt;/P&gt;

&lt;P&gt;AK&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2018 10:02:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182026#M149018</guid>
      <dc:creator>Muthukrishnan__DAK</dc:creator>
      <dc:date>2018-01-11T10:02:21Z</dc:date>
    </item>
    <item>
      <title>You will need to know what</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182027#M149019</link>
      <description>&lt;P&gt;You will need to know what routines are to be exported by the DLL that are to be used by your engineering analysis software, the calling convention to be used, and the processor architecture on which the DLL is to be run.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Rather than cope with the complications of setting up Visual Studio, projects, and so on, you can build a DLL at an Intel Fortran command window with the command&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;ifort /dll &amp;lt;myfile.f90&amp;gt; /Fe&amp;lt;dll_name&amp;gt;&lt;/P&gt;

&lt;P&gt;where &amp;lt;myfile.f90&amp;gt; is the name of the file that your client gave you, and &amp;lt;dll_name&amp;gt; is the name of the DLL that your analysis software wants to load and use.&lt;/P&gt;

&lt;P&gt;Another alternative would be to ask your client to build and send you the DLL.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2018 14:45:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182027#M149019</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2018-01-11T14:45:09Z</dc:date>
    </item>
    <item>
      <title>In addition to what mecej4</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182028#M149020</link>
      <description>&lt;P&gt;In addition to what mecej4 says, any subroutines or functions in the source that you want to call in the DLL must have an ATTRIBUTES DLLEXPORT directive in each one. For example:&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;subroutine somesub (argument)
!DEC$ ATTRIBUTES DLLEXPORT :: somesub
...&lt;/PRE&gt;

&lt;P&gt;Please be aware that your use of the Fortran compiler under the evaluation license is restricted to evaluating the compiler and the use of anything compiled with it is usable "only for the term of the evaluation." Read the &lt;A href="https://software.intel.com/en-us/license/eula-for-intel-software-development-products"&gt;license agreement.&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2018 14:55:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182028#M149020</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2018-01-11T14:55:29Z</dc:date>
    </item>
    <item>
      <title>@mecej4, I am getting this</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182029#M149021</link>
      <description>&lt;P&gt;&lt;IMG style="min-height: 597px; max-width: 100%;" src="https://i.imgur.com/UV6G5jK.png" original-title="" /&gt;&lt;/P&gt;

&lt;P&gt;@mecej4, I am getting this error messages when i use that command&lt;/P&gt;

&lt;P&gt;@Steve, If I can successfully link this dll to my analysis software and simulate the flow, I can ask my manager to buy a full version, as we have the actual projects analysis in line.&lt;/P&gt;

&lt;P&gt;I cannot see this command in the client sent fortran file. &lt;FONT face="Courier New"&gt;!DEC$ ATTRIBUTES DLLEXPORT :: somesub&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT face="Courier New"&gt;But he is successsfully doing this task of fortran to dll conversion and run the simulations. Could it be because of the version problem ? I am using latest XE studio and Visual studio 2017 installed. But client informed me he is using &lt;FONT face="Courier" size="2"&gt;&lt;FONT face="Courier" size="2"&gt;'Visual Fortran Composer XE 2011 Update 12' and 'Visual Studio* 2010 Shell' to create the dll file.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jan 2018 00:22:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182029#M149021</guid>
      <dc:creator>Muthukrishnan__DAK</dc:creator>
      <dc:date>2018-01-12T00:22:36Z</dc:date>
    </item>
    <item>
      <title>You need to first compile the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182030#M149022</link>
      <description>&lt;P&gt;You need to first compile the sources that define the various modules. In this case it might make more sense to use Visual Studio as it will handle the dependencies.&lt;/P&gt;

&lt;OL&gt;
	&lt;LI&gt;In Visual Studio, select File &amp;gt; New &amp;gt; New Fortran Project from Existing Code...&lt;/LI&gt;
	&lt;LI&gt;In the dialog that opens, fill in the path where you want the project created and the project name. Click Add and browse to the folder containing the source files for the DLL. Click Next&lt;/LI&gt;
	&lt;LI&gt;On the next screen, change the Project Type to Dynamic DLL. If you want a 64-bit DLL, check the x64 box. Click Finish&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;You will now have a project with the source files to create a DLL. But you will need to edit the sources to add the DLLEXPORT directives as I described above.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jan 2018 01:57:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182030#M149022</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2018-01-12T01:57:28Z</dc:date>
    </item>
    <item>
      <title>Thanks Steve for replying.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182031#M149023</link>
      <description>&lt;P&gt;Thanks Steve for replying.&lt;/P&gt;

&lt;P&gt;As I mentioned in my first post, I cannot see any Fortran project types to create in visual studio. I installed the complete package of Visual Studio . My current version is Version 15.5.3 Professional 2017.&lt;/P&gt;

&lt;P&gt;Picture link. While i select project from existing code, I see only these 3 options. NO fortran&lt;/P&gt;

&lt;P&gt;&lt;A href="https://imgur.com/a/TzcMy"&gt;https://imgur.com/a/TzcMy&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jan 2018 02:09:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182031#M149023</guid>
      <dc:creator>Muthukrishnan__DAK</dc:creator>
      <dc:date>2018-01-12T02:09:30Z</dc:date>
    </item>
    <item>
      <title>You should have no blanks</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182032#M149024</link>
      <description>&lt;P&gt;You should have no blanks between "/Fe" and "test.dll".&lt;/P&gt;

&lt;P&gt;There are several ways of specifying the exported symbols from a DLL. One is to use directives in the source code. A second way, if you need to export just one or two names, is to use a /export:&amp;lt;exported_name&amp;gt; in the linker options. A third way is to use a module definition (*.DEF) file.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jan 2018 02:16:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182032#M149024</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2018-01-12T02:16:59Z</dc:date>
    </item>
    <item>
      <title>That's not the "wizard" I</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182033#M149025</link>
      <description>&lt;P&gt;That's not the "wizard" I suggested you use. It's this one:&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Screenshot_2.jpg"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/9818i8F525BE98ACC0B5A/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="Screenshot_2.jpg" alt="Screenshot_2.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jan 2018 17:14:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182033#M149025</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2018-01-12T17:14:31Z</dc:date>
    </item>
    <item>
      <title>Hello </title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182034#M149026</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also have a Fortran&amp;nbsp;subroutine that I would like to create a dll&amp;nbsp;from. So far I have followed the discussion given in this very page but I end up with errors such as&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Error&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Compilation Aborted (code 1)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;Severity&amp;nbsp;&amp;nbsp; &amp;nbsp;Code&amp;nbsp;&amp;nbsp; &amp;nbsp;Description&amp;nbsp;&amp;nbsp; &amp;nbsp;Project&amp;nbsp;&amp;nbsp; &amp;nbsp;File&amp;nbsp;&amp;nbsp; &amp;nbsp;Line&amp;nbsp;&amp;nbsp; &amp;nbsp;Suppression State&lt;BR /&gt;Error&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;error #5082: Syntax error, found IDENTIFIER 'ATTRIBUTES' when expecting one of: =&amp;gt; = . [ % ( :&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;BR /&gt;......&lt;/P&gt;&lt;P&gt;Error&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Compilation Aborted (code 1)&amp;nbsp; &amp;nbsp;&lt;BR /&gt;Error&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Severe: No such file or directory&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone please provide a working example, please?&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 15:05:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182034#M149026</guid>
      <dc:creator>Boboshanti</dc:creator>
      <dc:date>2019-03-11T15:05:50Z</dc:date>
    </item>
    <item>
      <title>You have a syntax error in</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182035#M149027</link>
      <description>&lt;P&gt;You have a syntax error in your code (that you have not shown us.) Nothing in this thread is relevant to your issue.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 21:41:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182035#M149027</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2019-03-11T21:41:31Z</dc:date>
    </item>
    <item>
      <title>I have successfully compiled </title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182036#M149028</link>
      <description>&lt;P&gt;I have successfully compiled&amp;nbsp; the project using intel visual fortran&amp;nbsp;2019 compiler in both&amp;nbsp;64 bit and 32bit bit configuration in windows 10. The DLL file (rxns.dll) created is not being run by the GMS (ground water modelling system) version 10.4 64bit. How can I be able to run DLL file in GMS/RT3D?&lt;/P&gt;&lt;P&gt;Attached is the error message from GMS/RT3D.&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Aug 2019 06:01:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182036#M149028</guid>
      <dc:creator>NJUGUNA__PETER</dc:creator>
      <dc:date>2019-08-16T06:01:00Z</dc:date>
    </item>
    <item>
      <title>That's a rather generic</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182037#M149029</link>
      <description>&lt;P&gt;That's a rather generic message and not too helpful. Does the application run if you don't supply your DLL? I am not familiar with GMS/RT3D but usually applications that let users add DLLs do so with dynamic loading.&lt;/P&gt;&lt;P&gt;I suggest you first ask for help from GMS/RT3S support. We know nothing about your DLL or what is being asked of it.&lt;/P&gt;</description>
      <pubDate>Sat, 17 Aug 2019 00:39:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182037#M149029</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2019-08-17T00:39:02Z</dc:date>
    </item>
    <item>
      <title>Hi</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182038#M149030</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;target environment : Visual Studio x64 wth DLL in OFFICE 365 x64 bits&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Is it possible to call ,from a program a DLL in OFFICE365 cto explain ant do test this ?&lt;/LI&gt;&lt;LI&gt;is there specific parameters for compiling / linking ?&lt;/LI&gt;&lt;LI&gt;Have you a single DLL sample , for instance an addition X+Y, to explain this ?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;With my thanks for your help and/or advice ?&lt;/P&gt;&lt;P&gt;O.B.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Dec 2019 16:26:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182038#M149030</guid>
      <dc:creator>Berrabah__Omar</dc:creator>
      <dc:date>2019-12-10T16:26:17Z</dc:date>
    </item>
    <item>
      <title>Omar, your question really</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182039#M149031</link>
      <description>&lt;P&gt;Omar, your question really belongs in a new thread.&lt;/P&gt;&lt;P&gt;1. Yes, though your use of "OFFICE365" is too generic. Which part of Office are you interested in? There is a complete example of calling a Fortran DLL from Excel in the I&lt;A href="https://software.intel.com/en-us/product-code-samples"&gt;ntel Parallel Studio XE for Windows Sample Bundle&lt;/A&gt; (under compiler_f\MixedLanguage). You'll want to be sure to build the DLL for x64.&lt;/P&gt;&lt;P&gt;2.For x64, nothing more than what a DLL normally needs. Keep in mind that the compiler will upcase the routine name.&lt;/P&gt;&lt;P&gt;3. See above.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Dec 2019 18:14:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182039#M149031</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2019-12-10T18:14:26Z</dc:date>
    </item>
    <item>
      <title>Thanks Steve for the time</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182040#M149032</link>
      <description>&lt;P&gt;Thanks Steve for the time spent for helping.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2019 16:38:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1182040#M149032</guid>
      <dc:creator>Berrabah__Omar</dc:creator>
      <dc:date>2019-12-11T16:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: In addition to what mecej4</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1222001#M152324</link>
      <description>&lt;P&gt;I have such problem&lt;/P&gt;
&lt;P&gt;!DEC$ if defined(_dll)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; subrountine XX&lt;/P&gt;
&lt;P&gt;!DEC$ else&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; program XX&lt;/P&gt;
&lt;P&gt;!DEC$ ENDIF&lt;/P&gt;
&lt;P&gt;But i have a syntax error writing such sequence&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Oct 2020 23:52:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1222001#M152324</guid>
      <dc:creator>HN</dc:creator>
      <dc:date>2020-10-22T23:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: In addition to what mecej4</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1222244#M152331</link>
      <description>&lt;P&gt;Did you really write "subrountine" instead of "subroutine"? Please show us the actual code and the actual error message.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 15:26:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-dll-from-fortran-file/m-p/1222244#M152331</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2020-10-23T15:26:44Z</dc:date>
    </item>
  </channel>
</rss>

