<?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 Re: DLL questions in CVF example code in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813987#M44319</link>
    <description>My CVF is 6.6B (not old).&lt;BR /&gt;My TEMP/TMP user variable is set to "%USERPROFILE%Local SettingsTemp". (is it ok?)&lt;BR /&gt;&lt;BR /&gt;It do has a DLLEXPORT directives. look below&lt;BR /&gt;&lt;B&gt;! This F90 program will be compiled into a DLL, and then&lt;BR /&gt;!  used to link against by two test programs.  &lt;BR /&gt;! It contains COMMON that will be shared between the two.&lt;BR /&gt;!&lt;BR /&gt;! To compile this program into a dll that can share this&lt;BR /&gt;!  common area, use the command:&lt;BR /&gt;!   df custom.f90 /dll /link /section:.data,RWS&lt;BR /&gt;!&lt;BR /&gt;&lt;BR /&gt;	block data&lt;BR /&gt;	common /cb/ i, j &lt;BR /&gt;!DEC$ ATTRIBUTES DLLEXPORT :: /cb/&lt;BR /&gt;	data i,j /6,7/&lt;BR /&gt;&lt;BR /&gt;	end&lt;BR /&gt;&lt;/B&gt;&lt;BR /&gt;&lt;BR /&gt;I still have an uncertainty. The DLLEXP2 shows us that prog1 &amp;amp; prog2 share the same common block in custom.dll, is that true? But why I get this result?&lt;BR /&gt;&lt;B&gt;F:DLLDLLEXP2progRelease&amp;gt;prog1&lt;BR /&gt; Values of I,J before pause:&lt;BR /&gt;           6           7&lt;BR /&gt;Fortran Pause - Enter command&lt;CR&gt; or &lt;CR&gt; to continue.&lt;BR /&gt;prog2&lt;BR /&gt; Values of I,J set within PROG2 are:&lt;BR /&gt;           4           5&lt;BR /&gt;Fortran Pause - Enter command&lt;CR&gt; or &lt;CR&gt; to continue.&lt;BR /&gt;&lt;BR /&gt; Values of I,J after pause:&lt;BR /&gt;           6           7&lt;BR /&gt;&lt;/CR&gt;&lt;/CR&gt;&lt;/CR&gt;&lt;/CR&gt;&lt;/B&gt;&lt;BR /&gt;the prog2 changed the i,j, but it took no effect in the scope of prog1.&lt;BR /&gt;&lt;BR /&gt;Our forum is slow these days. It always takes me several minute to load next page.</description>
    <pubDate>Mon, 14 Apr 2003 23:56:10 GMT</pubDate>
    <dc:creator>yugn</dc:creator>
    <dc:date>2003-04-14T23:56:10Z</dc:date>
    <item>
      <title>DLL questions in CVF example code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813980#M44312</link>
      <description>I dont know how to compile the CVF example EXAMPLEDLLDLLEXP1 . &lt;BR /&gt;&lt;BR /&gt;  The problem I encountered is how I can complie the DLL project which reference subprogram or data of another DLL project and which need a .Lib to complete the Linking? &lt;BR /&gt;&lt;BR /&gt;  May be the makefile attached to the example can solve my problem, but I do know nothing about makefile.&lt;BR /&gt;&lt;BR /&gt;  I'm sorry to bother u again, steve ;-)</description>
      <pubDate>Mon, 07 Apr 2003 22:27:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813980#M44312</guid>
      <dc:creator>yugn</dc:creator>
      <dc:date>2003-04-07T22:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: DLL questions in CVF example code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813981#M44313</link>
      <description>sombody can help me?!&lt;BR /&gt;thanks in advance!</description>
      <pubDate>Tue, 08 Apr 2003 09:43:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813981#M44313</guid>
      <dc:creator>yugn</dc:creator>
      <dc:date>2003-04-08T09:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: DLL questions in CVF example code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813982#M44314</link>
      <description>The DLLEXP1 example is more complicated than it ought to be - it illustrates an application where you have two DLLs, each referencing data the other defines.  This is an unusual (and not particularly good) situation - normally, there would be a proper nesting of references without circular references.  If a programmer who worked for me did something this way, I'd tell them to go back and rewrite it without the circular references.&lt;BR /&gt;&lt;BR /&gt;The trick DLLEXP1 uses, which is in the makefile, is that DLL1 is built twice.  The first time it is just compiled and then a lib/def command is run to create an export library (.lib) based on the DLLEXPORT directives in the source.  Next, DLL2 is built, linking against the DLL1.LIB that was built in the first step.  Third, DLL1 is built again, this time as a complete DLL (creating another DLL1.LIB), and finally, the main program is built.&lt;BR /&gt;&lt;BR /&gt;What are you trying to accomplish?&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Wed, 09 Apr 2003 03:30:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813982#M44314</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2003-04-09T03:30:32Z</dc:date>
    </item>
    <item>
      <title>Re: DLL questions in CVF example code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813983#M44315</link>
      <description>I just want to know what u tell me. thanks a lot!&lt;BR /&gt;  I will pay attention to the design without circular references.&lt;BR /&gt;  Why the CVF team provide makefile instead of workspace file?</description>
      <pubDate>Wed, 09 Apr 2003 15:39:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813983#M44315</guid>
      <dc:creator>yugn</dc:creator>
      <dc:date>2003-04-09T15:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: DLL questions in CVF example code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813984#M44316</link>
      <description>This example was inherited from Microsoft.  Because of the circular reference, it is tricky to make a workspace out of it.  I think the best way to do that is to make the compile and library creation of DLL1 (first step) be a custom build step for DLL1.&lt;BR /&gt;&lt;BR /&gt;We need to go through all the examples for the combined product anyway, and we'll take another look at this. &lt;BR /&gt;&lt;BR /&gt;There are generally two types of DLL data sharing people want - one is where each program has its own private copy of the data (which DLLEXP1 demonstrates but adding the circular ref makes it harder to understand), and one where multiple programs on the system share one copy of the data - DLLEXP2 does this, and it could be made into a workspace without too much trouble - just need the /section switch added to the link options.&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Wed, 09 Apr 2003 20:51:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813984#M44316</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2003-04-09T20:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: DLL questions in CVF example code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813985#M44317</link>
      <description>There's another problem with DLLEXP2 example.&lt;BR /&gt;I used the command attached with custom.f90, that is,&lt;BR /&gt;&lt;B&gt;df custom.f90 /dll /link /section:.data,RWS&lt;/B&gt;&lt;BR /&gt;and 2 issue came.&lt;BR /&gt;&lt;BR /&gt;1st, error occured unless I place "dfordll.lib" into "D:Documents and Settings". But I'm sure that dfordll.lib is placed in the same dir as dfport.lib. Why the linker specially correlated dfordll.lib with that dir? (the DFVARS.BAT had been taken effect!)&lt;BR /&gt;&lt;B&gt;F:DLLDLLEXP2&amp;gt;df custom.f90 /dll /link /section:.data,rws&lt;BR /&gt;Compaq Visual Fortran Optimizing Compiler Version 6.6 (Update B)&lt;BR /&gt;Copyright 2001 Compaq Computer Corp. All rights reserved.&lt;BR /&gt;&lt;BR /&gt;custom.f90&lt;BR /&gt;Microsoft  Incremental Linker Version 6.00.8447&lt;BR /&gt;Copyright (C) Microsoft Corp 1992-1998. All rights reserved.&lt;BR /&gt;&lt;BR /&gt;/entry:_DllMainCRTStartup@12&lt;BR /&gt;/ignore:505&lt;BR /&gt;/debugtype:cv&lt;BR /&gt;/debug:minimal&lt;BR /&gt;/pdb:none&lt;BR /&gt;D:DOCUME~1dfordll.lib&lt;BR /&gt;msvcrt.lib&lt;BR /&gt;dfconsol.lib&lt;BR /&gt;dfport.lib&lt;BR /&gt;kernel32.lib&lt;BR /&gt;/out:custom.dll&lt;BR /&gt;/dll&lt;BR /&gt;/section:.data,rws&lt;BR /&gt;LINK : fatal error LNK1181: cannot open input file "D:DOCUME~1dfordll.lib"&lt;/B&gt;&lt;BR /&gt;&lt;BR /&gt;2nd, Why is there no .lib file generated for me with the command running successfully?&lt;BR /&gt;&lt;B&gt;F:DLLDLLEXP2&amp;gt;df custom.f90 /dll /link /section:.data,rws&lt;BR /&gt;Compaq Visual Fortran Optimizing Compiler Version 6.6 (Update B)&lt;BR /&gt;Copyright 2001 Compaq Computer Corp. All rights reserved.&lt;BR /&gt;&lt;BR /&gt;custom.f90&lt;BR /&gt;Microsoft  Incremental Linker Version 6.00.8447&lt;BR /&gt;Copyright (C) Microsoft Corp 1992-1998. All rights reserved.&lt;BR /&gt;&lt;BR /&gt;/entry:_DllMainCRTStartup@12&lt;BR /&gt;/ignore:505&lt;BR /&gt;/debugtype:cv&lt;BR /&gt;/debug:minimal&lt;BR /&gt;/pdb:none&lt;BR /&gt;D:DOCUME~1dfordll.lib&lt;BR /&gt;msvcrt.lib&lt;BR /&gt;dfconsol.lib&lt;BR /&gt;dfport.lib&lt;BR /&gt;kernel32.lib&lt;BR /&gt;/out:custom.dll&lt;BR /&gt;/dll&lt;BR /&gt;/section:.data,rws&lt;BR /&gt;LINK : warning LNK4001: no object files specified; libraries used&lt;BR /&gt;LINK : warning LNK4068: /MACHINE not specified; defaulting to IX86&lt;/B&gt;&lt;BR /&gt;&lt;BR /&gt;thanks again!</description>
      <pubDate>Mon, 14 Apr 2003 13:22:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813985#M44317</guid>
      <dc:creator>yugn</dc:creator>
      <dc:date>2003-04-14T13:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: DLL questions in CVF example code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813986#M44318</link>
      <description>The link problem is due to your TEMP folder being in a path with a space in its name and your using an old CVF version.  Either upgrade to the current version or change the definition of the TEMP and TMP environment variables (Right click on My Computer, select Properties, Advanced, Environment Variables) to point to an existing folder whose path does not contain a space, for example. C:TEMP&lt;BR /&gt;&lt;BR /&gt;No export library is created if you don't have one or more valid DLLEXPORT directives.&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Mon, 14 Apr 2003 20:22:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813986#M44318</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2003-04-14T20:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: DLL questions in CVF example code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813987#M44319</link>
      <description>My CVF is 6.6B (not old).&lt;BR /&gt;My TEMP/TMP user variable is set to "%USERPROFILE%Local SettingsTemp". (is it ok?)&lt;BR /&gt;&lt;BR /&gt;It do has a DLLEXPORT directives. look below&lt;BR /&gt;&lt;B&gt;! This F90 program will be compiled into a DLL, and then&lt;BR /&gt;!  used to link against by two test programs.  &lt;BR /&gt;! It contains COMMON that will be shared between the two.&lt;BR /&gt;!&lt;BR /&gt;! To compile this program into a dll that can share this&lt;BR /&gt;!  common area, use the command:&lt;BR /&gt;!   df custom.f90 /dll /link /section:.data,RWS&lt;BR /&gt;!&lt;BR /&gt;&lt;BR /&gt;	block data&lt;BR /&gt;	common /cb/ i, j &lt;BR /&gt;!DEC$ ATTRIBUTES DLLEXPORT :: /cb/&lt;BR /&gt;	data i,j /6,7/&lt;BR /&gt;&lt;BR /&gt;	end&lt;BR /&gt;&lt;/B&gt;&lt;BR /&gt;&lt;BR /&gt;I still have an uncertainty. The DLLEXP2 shows us that prog1 &amp;amp; prog2 share the same common block in custom.dll, is that true? But why I get this result?&lt;BR /&gt;&lt;B&gt;F:DLLDLLEXP2progRelease&amp;gt;prog1&lt;BR /&gt; Values of I,J before pause:&lt;BR /&gt;           6           7&lt;BR /&gt;Fortran Pause - Enter command&lt;CR&gt; or &lt;CR&gt; to continue.&lt;BR /&gt;prog2&lt;BR /&gt; Values of I,J set within PROG2 are:&lt;BR /&gt;           4           5&lt;BR /&gt;Fortran Pause - Enter command&lt;CR&gt; or &lt;CR&gt; to continue.&lt;BR /&gt;&lt;BR /&gt; Values of I,J after pause:&lt;BR /&gt;           6           7&lt;BR /&gt;&lt;/CR&gt;&lt;/CR&gt;&lt;/CR&gt;&lt;/CR&gt;&lt;/B&gt;&lt;BR /&gt;the prog2 changed the i,j, but it took no effect in the scope of prog1.&lt;BR /&gt;&lt;BR /&gt;Our forum is slow these days. It always takes me several minute to load next page.</description>
      <pubDate>Mon, 14 Apr 2003 23:56:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813987#M44319</guid>
      <dc:creator>yugn</dc:creator>
      <dc:date>2003-04-14T23:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: DLL questions in CVF example code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813988#M44320</link>
      <description>steve, is there a way to set &lt;B&gt;implicit noneb] as default? I hate the implicit type!&lt;BR /&gt;&lt;BR /&gt;If I change the place of directive statement, is it the same?&lt;BR /&gt;example:&lt;BR /&gt;&lt;B&gt;!DEC$ ATTRIBUTES DLLIMPORT :: /cb/&lt;BR /&gt;	common /cb/ i, j&lt;BR /&gt;	integer i,j&lt;BR /&gt;&lt;/B&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;B&gt;	common /cb/ i, j&lt;BR /&gt;!DEC$ ATTRIBUTES DLLIMPORT :: /cb/&lt;BR /&gt;	integer i,j&lt;BR /&gt;&lt;/B&gt;&lt;BR /&gt;et al&lt;/B&gt;</description>
      <pubDate>Tue, 15 Apr 2003 00:20:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813988#M44320</guid>
      <dc:creator>yugn</dc:creator>
      <dc:date>2003-04-15T00:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: DLL questions in CVF example code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813989#M44321</link>
      <description>DLLEXP2 needs the /section:.data,RWS switch in the link commnd to share the data.&lt;BR /&gt;&lt;BR /&gt;/warn:declarations will give you an implicit IMPLICIT NONE&lt;BR /&gt;&lt;BR /&gt;The order of directives and declarations shouldn't matter.&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Tue, 15 Apr 2003 01:42:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813989#M44321</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2003-04-15T01:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: DLL questions in CVF example code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813990#M44322</link>
      <description>In Developer Studio IDE, how to set /section:.data,RWS and /warn: please</description>
      <pubDate>Tue, 15 Apr 2003 09:09:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813990#M44322</guid>
      <dc:creator>yugn</dc:creator>
      <dc:date>2003-04-15T09:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: DLL questions in CVF example code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813991#M44323</link>
      <description>/section you will have to type in the Common Options box under the Link tab.  /warn:declarations is Compilation Diagnostics..Undeclared variables checkbox.&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Tue, 15 Apr 2003 19:09:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813991#M44323</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2003-04-15T19:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: DLL questions in CVF example code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813992#M44324</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;I have another question which is discussed before(&lt;A href="http://softwareforums.intel.com/ids/board/message?board.id=5&amp;amp;message.id=4831" target="_blank"&gt;Write to files in a DLL&lt;/A&gt;)&lt;BR /&gt;but the solution seemed invalid for my testing.&lt;BR /&gt;&lt;BR /&gt;How can I share a file which opened in calling program in a DLL ?&lt;BR /&gt;&lt;BR /&gt;the testing code is from &lt;I&gt;marcellocattaneo&lt;/I&gt;. I did clicked the &lt;B&gt;force file output&lt;/B&gt;(equivalent to /force) option(project-&amp;gt;setting-&amp;gt;link-&amp;gt;category(costumize) ),but the result was&lt;BR /&gt;&lt;B&gt;Is it open in Main ? T&lt;BR /&gt;Is it open in the DLL ? F&lt;BR /&gt;&lt;/B&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;B&gt;!***************************************************&lt;BR /&gt;program Cons_OpenFile&lt;BR /&gt;&lt;BR /&gt;!DEC$ ATTRIBUTES DLLIMPORT :: MyProc&lt;BR /&gt;&lt;BR /&gt;implicit none&lt;BR /&gt;&lt;BR /&gt;interface &lt;BR /&gt;subroutine MyProc ( ff )&lt;BR /&gt;!DEC$ ATTRIBUTES DLLEXPORT :: MyProc&lt;BR /&gt;!DEC$ ATTRIBUTES ALIAS: 'MyProc' :: MyProc&lt;BR /&gt;use dfwin&lt;BR /&gt;integer:: ff&lt;BR /&gt;logical:: opn&lt;BR /&gt;end subroutine MyProc&lt;BR /&gt;end interface&lt;BR /&gt;&lt;BR /&gt;integer:: ff, ios&lt;BR /&gt;logical:: opn&lt;BR /&gt;&lt;BR /&gt;ff = 8&lt;BR /&gt;&lt;BR /&gt;open( ff, FILE= 'TestLog.log', &amp;amp;&lt;BR /&gt;STATUS='UNKNOWN', IOSTAT=ios )&lt;BR /&gt;&lt;BR /&gt;inquire(ff, OPENED= opn)&lt;BR /&gt;&lt;BR /&gt;print * , 'Is it open in Main ?', opn&lt;BR /&gt;&lt;BR /&gt;call MyProc (ff)&lt;BR /&gt;&lt;BR /&gt;end program&lt;BR /&gt;&lt;BR /&gt;!***************************************************&lt;BR /&gt;module dll_readfile&lt;BR /&gt;&lt;BR /&gt;implicit none&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;contains&lt;BR /&gt;&lt;BR /&gt;subroutine MyProc ( ff )&lt;BR /&gt;&lt;BR /&gt;!DEC$ ATTRIBUTES DLLEXPORT :: MyProc&lt;BR /&gt;!DEC$ ATTRIBUTES ALIAS: 'MyProc' :: MyProc&lt;BR /&gt;use dfwin&lt;BR /&gt;integer:: ff, ret&lt;BR /&gt;logical:: opn&lt;BR /&gt;&lt;BR /&gt;inquire(ff, OPENED= opn)&lt;BR /&gt;&lt;BR /&gt;print * , 'Is it open in the DLL ?', opn&lt;BR /&gt;&lt;BR /&gt;end subroutine MyProc&lt;BR /&gt;&lt;BR /&gt;end module dll_readfile&lt;BR /&gt;&lt;BR /&gt;!******************************************************&lt;/B&gt;
&lt;P&gt;&lt;SPAN class="time_text"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Message Edited by intel.software.network.support on &lt;SPAN class="date_text"&gt;12-09-2005&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;02:14 PM&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2003 22:34:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813992#M44324</guid>
      <dc:creator>yugn</dc:creator>
      <dc:date>2003-04-15T22:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: DLL questions in CVF example code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813993#M44325</link>
      <description>The main program has to be built to use the DLL form of the run-time library.  When you create the executable project, the Fortran project wizard asks if you'll be linking to Fortran DLLs.  If you say yes, it changes the project settings appropriately.  If you didn't, go to the Libraries dialog and make sure it says the same thing as it does for your DLL project (and it had better be one of the DLL variants.)&lt;BR /&gt;&lt;BR /&gt;If you had to use /force, you've made an error somewhere and need to fix that, as you're just "papering over" the real problem.&lt;BR /&gt;&lt;BR /&gt;Steve</description>
      <pubDate>Tue, 15 Apr 2003 23:29:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DLL-questions-in-CVF-example-code/m-p/813993#M44325</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2003-04-15T23:29:58Z</dc:date>
    </item>
  </channel>
</rss>

