<?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 From Linux (ifort) to Windows (IVF+MVS) in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778624#M26415</link>
    <description>&lt;P&gt;Steve,&lt;/P&gt;

&lt;P&gt;Thanks you for help! &lt;/P&gt;

&lt;P&gt;I will check all items again.&lt;/P&gt;

&lt;P&gt;Because, the last error
remains.&lt;/P&gt;

&lt;P&gt;If I cannot fix this error I try to ask you again.&lt;/P&gt;

&lt;P&gt;Maxim&lt;/P&gt;</description>
    <pubDate>Tue, 22 Mar 2011 20:22:21 GMT</pubDate>
    <dc:creator>Maxim</dc:creator>
    <dc:date>2011-03-22T20:22:21Z</dc:date>
    <item>
      <title>From Linux (ifort) to Windows (IVF+MVS)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778615#M26406</link>
      <description>&lt;B&gt;From Linux (ifort) to Windows (IVF+MVS)&lt;/B&gt;&lt;BR /&gt;&lt;HR size="0.5px" /&gt;&lt;P&gt;I have a mixing (fortran  main and c  static lib) project.
I have no problem for Linux. But I need to compile this project for Windows. Im
trying to use Intel Visual Fortran for MVS 2010 (Windows 7 (64 Pro)). &lt;/P&gt;

&lt;P&gt;I selected the next options:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;&lt;P&gt;Fortran/Preprocessor/Preprocessor Source File: Yes(/fpp)&lt;/P&gt;&lt;P&gt;Fortran/Compatibility/Enable F77 Run-time Compatibility: Yes(/f77rtl)&lt;/P&gt;&lt;P&gt;Fortran/Compatibility/Use F77 Integer Constants: Yes(/inconstant)&lt;/P&gt;&lt;P&gt;Fortran/ Diagnostics /Check Routine Interface/: No&lt;/P&gt;&lt;/BLOCKQUOTE&gt;







&lt;P&gt;For this options compile give me:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;&lt;P&gt;remark #5169: Misplaced conditional compilation
directive or nesting too deep&lt;/P&gt;&lt;P&gt;error #6437: A subroutine or function is calling
itself recursively.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;





&lt;P&gt;If I setup the last item to &lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;Fortran/ Diagnostics /Check
Routine Interface/: -&amp;gt;Yes &lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt; there are additional errors: &lt;/P&gt;

&lt;BLOCKQUOTE&gt;&lt;P&gt;error #7836: If the actual argument is scalar, the
corresponding dummy argument shall be scalar unless the actual argument is an
element of an array that is not an assumed-shape or pointer array, or a
substring of such an element.&lt;/P&gt;&lt;P&gt;error #7983: The storage extent of the dummy
argument exceeds that of the actual argument.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;



&lt;P&gt;For Linux I use both gfortran and ifort and all ok!&lt;/P&gt;

&lt;P&gt;What should I change for Windows?&lt;/P&gt;

&lt;P&gt;Thanks!!!&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2011 16:45:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778615#M26406</guid>
      <dc:creator>Maxim</dc:creator>
      <dc:date>2011-03-22T16:45:18Z</dc:date>
    </item>
    <item>
      <title>From Linux (ifort) to Windows (IVF+MVS)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778616#M26407</link>
      <description>5169: you have an error in your preprocessor directives&lt;BR /&gt;6437: this should be self-explanatory. Add the RECURSIVE keyword before the FUNCTION or SUBROUTINE if that is intended&lt;BR /&gt;7836 and 7983 indicate coding errors detected by generated interface checking. You evidently did not use that on Linux. Fix the coding errors.&lt;BR /&gt;&lt;BR /&gt;That some other compiler did not detect these errors is not surprising.</description>
      <pubDate>Tue, 22 Mar 2011 17:00:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778616#M26407</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2011-03-22T17:00:00Z</dc:date>
    </item>
    <item>
      <title>From Linux (ifort) to Windows (IVF+MVS)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778617#M26408</link>
      <description>These don't appear to be questions specific to Windows; they result from your having stricter syntax checking enabled within the Fortran. Your program reliability could be improved for both Windows and linux by correcting them.&lt;BR /&gt;Supplying a scalar argument to a dummy array usually works on Intel platforms, but violates Fortran syntax.&lt;BR /&gt;Functions which are recursive should have the RECURSIVE keyword throughout the call stack to make them safe for such usage.</description>
      <pubDate>Tue, 22 Mar 2011 17:01:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778617#M26408</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2011-03-22T17:01:42Z</dc:date>
    </item>
    <item>
      <title>From Linux (ifort) to Windows (IVF+MVS)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778618#M26409</link>
      <description>&lt;P&gt;Thanks to all for fast answers. Really Im absolutely newbie
in Fortran.&lt;/P&gt;

&lt;P&gt;I think my cod has problem with preprocessing. The first
warning from compile is&lt;/P&gt;

&lt;BLOCKQUOTE&gt;&lt;P&gt;remark #5169: Misplaced conditional compilation
directive or nesting too deep&lt;/P&gt;&lt;/BLOCKQUOTE&gt;

&lt;P&gt;for line &lt;B&gt;&lt;I&gt;CDEC$
END IF &lt;/I&gt;&lt;/B&gt;in code:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;&lt;P&gt;
 &lt;B&gt;subroutine&lt;/B&gt;
datime(day)&lt;/P&gt;&lt;P&gt;
 &lt;B&gt;character&lt;/B&gt;*24
day&lt;/P&gt;&lt;P&gt;#ifdef PC&lt;/P&gt;&lt;P&gt;&lt;B&gt;cDEC$ IF DEFINED (PC)&lt;/B&gt;&lt;/P&gt;&lt;P&gt;
&lt;B&gt;character&lt;/B&gt;*24
fdate&lt;/P&gt;&lt;P&gt;
&lt;B&gt;external&lt;/B&gt;
fdate&lt;/P&gt;&lt;P&gt;
 day=fdate()&lt;/P&gt;&lt;P&gt;&lt;B&gt;cDEC$ ELSE&lt;/B&gt;&lt;/P&gt;&lt;P&gt;#elif (AIX)&lt;/P&gt;&lt;P&gt;
&lt;B&gt;external&lt;/B&gt;
fdate_&lt;/P&gt;&lt;P&gt;
&lt;B&gt;call&lt;/B&gt;
fdate_(day)&lt;/P&gt;&lt;P&gt;#else&lt;/P&gt;&lt;P&gt; &lt;B&gt;character&lt;/B&gt;*24 fdate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;
day=fdate()&lt;/P&gt;&lt;P&gt;#endif&lt;/P&gt;&lt;P&gt;&lt;B&gt;CDEC$ END IF&lt;/B&gt;&lt;/P&gt;&lt;P&gt;
 &lt;B&gt;end&lt;/B&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;



































&lt;P&gt; Error with recursion happens here&lt;/P&gt;

&lt;BLOCKQUOTE&gt;&lt;P&gt;#ifdef PC&lt;/P&gt;&lt;P&gt;&lt;B&gt;cDEC$ IF DEFINED (PC)&lt;/B&gt;&lt;/P&gt;&lt;P&gt;
&lt;B&gt;recursive&lt;/B&gt;
&lt;B&gt;subroutine&lt;/B&gt;
objvertices(nacc,nobject,xmin,xmax,side,h&lt;/P&gt;&lt;P&gt;
&amp;amp; ,natom,lookmol)&lt;/P&gt;&lt;P&gt;&lt;B&gt;cDEC$ ELSE&lt;/B&gt;&lt;/P&gt;&lt;P&gt;#elif (IFC) || (AIX)&lt;/P&gt;&lt;P&gt;
&lt;B&gt;recursive&lt;/B&gt;
&lt;B&gt;subroutine&lt;/B&gt;
objvertices(nacc,nobject,xmin,xmax,side,h&lt;/P&gt;&lt;P&gt;
&amp;amp; ,natom,lookmol)&lt;/P&gt;&lt;P&gt;#else&lt;/P&gt;&lt;P&gt; &lt;B&gt;subroutine&lt;/B&gt;
objvertices(nacc,nobject,xmin,xmax,side,h&lt;/P&gt;&lt;P&gt;
&amp;amp; ,natom,lookmol)&lt;/P&gt;&lt;P&gt;#endif&lt;/P&gt;&lt;/BLOCKQUOTE&gt;























&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2011 17:23:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778618#M26409</guid>
      <dc:creator>Maxim</dc:creator>
      <dc:date>2011-03-22T17:23:32Z</dc:date>
    </item>
    <item>
      <title>From Linux (ifort) to Windows (IVF+MVS)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778619#M26410</link>
      <description>You don't need to have both CDEC$ IF and #if in the source. Just use the # syntax with /fpp.&lt;BR /&gt;&lt;BR /&gt;I see in some lines you have the # not in column 1, or at least that's what it looks like here. They should be in column 1.&lt;BR /&gt;&lt;BR /&gt;Where is the recursive call the compiler complains about? Do you perhaps need to add PC as a preprocessor definition? It is not clear to me why all this conditional code is being used.</description>
      <pubDate>Tue, 22 Mar 2011 17:46:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778619#M26410</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2011-03-22T17:46:06Z</dc:date>
    </item>
    <item>
      <title>From Linux (ifort) to Windows (IVF+MVS)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778620#M26411</link>
      <description>&lt;P&gt;Thanks again!&lt;/P&gt;

&lt;P&gt;I removed all CDEC$ IF and #if. Compiler is
ok. But I received many errors from link:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;&lt;P&gt;error LNK2001: unresolved external symbol _MEMALLOC&lt;/P&gt;&lt;/BLOCKQUOTE&gt;

&lt;P&gt;What is it?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2011 18:37:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778620#M26411</guid>
      <dc:creator>Maxim</dc:creator>
      <dc:date>2011-03-22T18:37:09Z</dc:date>
    </item>
    <item>
      <title>From Linux (ifort) to Windows (IVF+MVS)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778621#M26412</link>
      <description>&lt;P&gt;I did not suggest removing both the CDEC$ if and #if. It's evident you need the #if lines at least.&lt;BR /&gt;&lt;BR /&gt;The _MEMALLOC error is because your program, at least in the form you have it now, calls a routine named MEMALLOC. This is not standard Fortran and is not a routine provided by Intel Fortran.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2011 18:45:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778621#M26412</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2011-03-22T18:45:16Z</dc:date>
    </item>
    <item>
      <title>From Linux (ifort) to Windows (IVF+MVS)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778622#M26413</link>
      <description>&lt;P&gt;Thank you very much!&lt;/P&gt;

&lt;P&gt;I work with solution. Solution has a 2 projects one project
in Fortran other in C . Project in C has function memalloc.c. Should I to
setup a special options for link? &lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2011 19:01:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778622#M26413</guid>
      <dc:creator>Maxim</dc:creator>
      <dc:date>2011-03-22T19:01:57Z</dc:date>
    </item>
    <item>
      <title>From Linux (ifort) to Windows (IVF+MVS)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778623#M26414</link>
      <description>The C project should be a static library project. Right click on the Fortran project and select Dependencies. Check the box on the C project to make it a dependent of the Fortran project.&lt;BR /&gt;&lt;BR /&gt;Make sure that the memalloc routine in C is actually named MEMALLOC in upper case.&lt;BR /&gt;&lt;BR /&gt;Right click on the C project and select Properties &amp;gt; C++ &amp;gt; Code Generation. Make sure that the Runtime Library setting matches the one in the Fortran project under Libraries.</description>
      <pubDate>Tue, 22 Mar 2011 19:54:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778623#M26414</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2011-03-22T19:54:28Z</dc:date>
    </item>
    <item>
      <title>From Linux (ifort) to Windows (IVF+MVS)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778624#M26415</link>
      <description>&lt;P&gt;Steve,&lt;/P&gt;

&lt;P&gt;Thanks you for help! &lt;/P&gt;

&lt;P&gt;I will check all items again.&lt;/P&gt;

&lt;P&gt;Because, the last error
remains.&lt;/P&gt;

&lt;P&gt;If I cannot fix this error I try to ask you again.&lt;/P&gt;

&lt;P&gt;Maxim&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2011 20:22:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778624#M26415</guid>
      <dc:creator>Maxim</dc:creator>
      <dc:date>2011-03-22T20:22:21Z</dc:date>
    </item>
    <item>
      <title>From Linux (ifort) to Windows (IVF+MVS)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778625#M26416</link>
      <description>&lt;P&gt;I created my project again.&lt;/P&gt;

&lt;P&gt;I setup next properties:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;&lt;P&gt;Fortran/Preprocessor/Preprocessor Source File: Yes(/fpp)&lt;/P&gt;&lt;P&gt;Fortran/Compatibility/Enable F77 Run-time Compatibility: Yes(/f77rtl)&lt;/P&gt;&lt;P&gt;Fortran/Compatibility/Use F77 Integer Constants: Yes(/inconstant)&lt;/P&gt;&lt;P&gt;Fortran/Libraries/ Runtime Library: Multithreaded&lt;/P&gt;&lt;P&gt;Fortran/ Diagnostics /Check Routine Interface/: No&lt;/P&gt;&lt;P&gt;C/C++/Code Generation/Runtime Library: Multi-threaded
(/MT)&lt;/P&gt;&lt;/BLOCKQUOTE&gt;











&lt;P&gt;Fortran  set as Startup Project. Fortran project dependencies
form C project.&lt;/P&gt;

&lt;P&gt;But I have errors from linker:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;&lt;P&gt;error LNK2019: unresolved external symbol _MEMALLOC
referenced in function _SETCRG&lt;/P&gt;&lt;/BLOCKQUOTE&gt;

&lt;P&gt;file memalloc.c is:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;&lt;P&gt;#define memalloc (_stdcall
MEMALLOC)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void *memalloc( void **ptr,int *entry_size, int
*new_size )&lt;/P&gt;&lt;P&gt;{ void *newptr;
&lt;/P&gt;&lt;P&gt;/*
printf("\n Entry_size: %d, new_size: %d\n",*entry_size,
*new_size);*/&lt;/P&gt;&lt;P&gt; if(!*new_size) &lt;/P&gt;&lt;P&gt; {&lt;/P&gt;&lt;P&gt; if(*ptr) free(*ptr);&lt;/P&gt;&lt;P&gt; return NULL;&lt;/P&gt;&lt;P&gt; }&lt;/P&gt;&lt;P&gt; if(!*ptr) { &lt;/P&gt;&lt;P&gt;
newptr=calloc((size_t)(*new_size),(size_t)(*entry_size)); &lt;/P&gt;&lt;P&gt;
/*printf("\n *ptr: %p, newptr: %p, newptr
int : %ld\n",*ptr,newptr,newptr);*/&lt;/P&gt;&lt;P&gt;
}&lt;/P&gt;&lt;P&gt; else {
newptr=realloc(*ptr, (size_t)((*new_size)*(*entry_size)));&lt;/P&gt;&lt;P&gt;
/*printf("\n realloc: newptr: %p, newptr
int : %d\n",*ptr,newptr);*/ }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; if (newptr == 0 &amp;amp;&amp;amp; *new_size != 0) &lt;/P&gt;&lt;P&gt; {&lt;/P&gt;&lt;P&gt;#ifdef PC&lt;/P&gt;&lt;P&gt;
perror("memalloc");&lt;/P&gt;&lt;P&gt;#else&lt;/P&gt;&lt;P&gt;
perror("memalloc");&lt;/P&gt;&lt;P&gt;#endif&lt;/P&gt;&lt;P&gt;  exit(EXIT_FAILURE);&lt;/P&gt;&lt;P&gt; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; return newptr;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/BLOCKQUOTE&gt;

























































&lt;P&gt;&lt;/P&gt;

&lt;P&gt;And from function setcrg.f I call memalloc like next:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;&lt;P&gt;i_cgbp=memalloc(i_cgbp,realsiz,5*ibcmax).&lt;/P&gt;&lt;/BLOCKQUOTE&gt;

&lt;P&gt; Compile for Linux is OK!&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Mar 2011 15:29:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778625#M26416</guid>
      <dc:creator>Maxim</dc:creator>
      <dc:date>2011-03-24T15:29:31Z</dc:date>
    </item>
    <item>
      <title>From Linux (ifort) to Windows (IVF+MVS)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778626#M26417</link>
      <description>Please attach the buildlog.htm showing the failed link.</description>
      <pubDate>Thu, 24 Mar 2011 15:55:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778626#M26417</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2011-03-24T15:55:08Z</dc:date>
    </item>
    <item>
      <title>From Linux (ifort) to Windows (IVF+MVS)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778627#M26418</link>
      <description>Thanks Steve!!!&lt;BR /&gt;&lt;BR /&gt;&lt;TABLE width="100%" bgcolor="#E0E0E0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN style="font-family: arial; font-size: x-small;"&gt; Build Log &lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;TABLE cellpadding="0" cellspacing="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="0" bgcolor="#E0E0E0"&gt;&lt;/TD&gt;&lt;TD width="0" bgcolor="white"&gt;&lt;/TD&gt;&lt;TD width="*"&gt;&lt;PRE&gt;&lt;H3&gt; Build started: Project: DelphiFortran, Configuration: Debug|Win32 &lt;/H3&gt;&lt;/PRE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;TABLE width="100%" bgcolor="#E0E0E0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN style="font-family: arial; font-size: xx-small;"&gt; Output &lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;TABLE cellpadding="0" cellspacing="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="0" bgcolor="#E0E0E0"&gt;&lt;/TD&gt;&lt;TD width="0" bgcolor="white"&gt;&lt;/TD&gt;&lt;TD width="*"&gt;&lt;PRE&gt;Deleting intermediate files and output files for project 'DelphiFortran', configuration 'Debug|Win32'.
Compiling with Intel Visual Fortran Compiler XE 12.0.1.127 [IA-32]...
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\setbc4.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\relfac4b.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\indver.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\cfind4.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\wrtsit4.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\watput.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\radass4.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\extrmobjects.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\elb.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\srfestim.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\omalt.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\mkvtl.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\crgarr.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\scaler4.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\react2.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\ichash4.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\cent4.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\wrtprm.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\watpte.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:F /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\qinttot.F"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\extrm.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\distrTOpoint.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\setrc4d.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\off4.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\mkdbsf.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\cputime.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\scale.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\rdlog4.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\grdatm.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\assrad.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\wrtphi.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\vwtms2.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\expand4.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:F /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\distobj.F"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\setout.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:F /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\objvertices.F"
D:\Clemson\DELPHI\DELPHI_VS2010\src\objvertices.F(181): warning #6371: A jump into a block from outside the block may have occurred.   [350]
     &amp;amp;               go to 350
---------------------------^

ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\itit4j.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\conplt.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\sas.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\rdiv.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\getatm2.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\epsmak.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\asscrg.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\wrtgcrg.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\up.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\phintp4.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\nitit.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\ex.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\dbsfd.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\setfcrg.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\rfind4.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\nlener.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\irhash4.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\clb.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\anasurf.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\wrtvisual.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\wrtatd.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\rforce.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\rdhrad.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\fxhl.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\encalc4.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\wrteps4b.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\ts.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\phierg.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\namlen3.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\cube.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\setcrg.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\rent4.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\inewt.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\chkcrg.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\anagrd4.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\wrtsurf.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\wrt4.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\rdhcrg.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\form2.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\encalc_qnifft.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:F /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\timef.F"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\phicon.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\msrf.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:f /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\crgass4.f"
ifort /nologo /debug:full /Od /fpp /f77rtl /intconstant /module:"Debug\" /object:"Debug\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /c /extfor:F /Qvc10 /Qlocation,link,"C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\\bin" "D:\Clemson\DELPHI\DELPHI_VS2010\src\qdiff4v.F"
Linking...
Creating temporary file "RSP1.rsp" with contents
[
 /OUT:"Debug\DelphiFortran.exe" /INCREMENTAL:NO /NOLOGO /LIBPATH:"D:\Clemson\DELPHI\DELPHI_VS2010\DelphiC\DelphiC\Debug" /MANIFEST /MANIFESTFILE:"D:\Clemson\DELPHI\DELPHI_VS2010\DelphiFortran\Debug\DelphiFortran.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"D:\Clemson\DELPHI\DELPHI_VS2010\DelphiFortran\Debug\DelphiFortran.pdb" /SUBSYSTEM:CONSOLE /IMPLIB:"D:\Clemson\DELPHI\DELPHI_VS2010\DelphiFortran\Debug\DelphiFortran.lib" "Debug\setbc4.obj" "Debug\relfac4b.obj" "Debug\indver.obj" "Debug\cfind4.obj" "Debug\wrtsit4.obj" "Debug\watput.obj" "Debug\radass4.obj" "Debug\extrmobjects.obj" "Debug\elb.obj" "Debug\srfestim.obj" "Debug\omalt.obj" "Debug\mkvtl.obj" "Debug\crgarr.obj" "Debug\scaler4.obj" "Debug\react2.obj" "Debug\ichash4.obj" "Debug\cent4.obj" "Debug\wrtprm.obj" "Debug\watpte.obj" "Debug\qinttot.obj" "Debug\extrm.obj" "Debug\distrTOpoint.obj" "Debug\setrc4d.obj" "Debug\off4.obj" "Debug\mkdbsf.obj" "Debug\cputime.obj" "Debug\scale.obj" "Debug\rdlog4.obj" "Debug\grdatm.obj" "Debug\assrad.obj" "Debug\wrtphi.obj" "Debug\vwtms2.obj" "Debug\expand4.obj" "Debug\distobj.obj" "Debug\setout.obj" "Debug\objvertices.obj" "Debug\itit4j.obj" "Debug\conplt.obj" "Debug\sas.obj" "Debug\rdiv.obj" "Debug\getatm2.obj" "Debug\epsmak.obj" "Debug\asscrg.obj" "Debug\wrtgcrg.obj" "Debug\up.obj" "Debug\phintp4.obj" "Debug\nitit.obj" "Debug\ex.obj" "Debug\dbsfd.obj" "Debug\setfcrg.obj" "Debug\rfind4.obj" "Debug\nlener.obj" "Debug\irhash4.obj" "Debug\clb.obj" "Debug\anasurf.obj" "Debug\wrtvisual.obj" "Debug\wrtatd.obj" "Debug\rforce.obj" "Debug\rdhrad.obj" "Debug\fxhl.obj" "Debug\encalc4.obj" "Debug\wrteps4b.obj" "Debug\ts.obj" "Debug\phierg.obj" "Debug\namlen3.obj" "Debug\cube.obj" "Debug\setcrg.obj" "Debug\rent4.obj" "Debug\inewt.obj" "Debug\chkcrg.obj" "Debug\anagrd4.obj" "Debug\wrtsurf.obj" "Debug\wrt4.obj" "Debug\rdhcrg.obj" "Debug\form2.obj" "Debug\encalc_qnifft.obj" "Debug\timef.obj" "Debug\phicon.obj" "Debug\msrf.obj" "Debug\crgass4.obj" "Debug\qdiff4v.obj" "D:\Clemson\DELPHI\DELPHI_VS2010\DelphiC\Debug\DelphiC.lib"
]
Creating command line "Link @"D:\Clemson\DELPHI\DELPHI_VS2010\DelphiFortran\Debug\RSP1.rsp""

Link: executing 'link'
setcrg.obj : error LNK2019: unresolved external symbol _MEMALLOC referenced in function _SETCRG
msrf.obj : error LNK2001: unresolved external symbol _MEMALLOC
qdiff4v.obj : error LNK2001: unresolved external symbol _MEMALLOC
setfcrg.obj : error LNK2001: unresolved external symbol _MEMALLOC
nlener.obj : error LNK2001: unresolved external symbol _MEMALLOC
clb.obj : error LNK2001: unresolved external symbol _MEMALLOC
cube.obj : error LNK2001: unresolved external symbol _MEMALLOC
setout.obj : error LNK2001: unresolved external symbol _MEMALLOC
sas.obj : error LNK2001: unresolved external symbol _MEMALLOC
getatm2.obj : error LNK2001: unresolved external symbol _MEMALLOC
epsmak.obj : error LNK2001: unresolved external symbol _MEMALLOC
mkdbsf.obj : error LNK2001: unresolved external symbol _MEMALLOC
scale.obj : error LNK2001: unresolved external symbol _MEMALLOC
wrtphi.obj : error LNK2001: unresolved external symbol _MEMALLOC
vwtms2.obj : error LNK2001: unresolved external symbol _MEMALLOC
indver.obj : error LNK2001: unresolved external symbol _MEMALLOC
wrtsit4.obj : error LNK2001: unresolved external symbol _MEMALLOC
crgarr.obj : error LNK2001: unresolved external symbol _MEMALLOC
react2.obj : error LNK2001: unresolved external symbol _MEMALLOC
qdiff4v.obj : error LNK2019: unresolved external symbol _CREAPDB referenced in function _MAIN__
Debug\DelphiFortran.exe : fatal error LNK1120: 2 unresolved externals


DelphiFortran - 21 error(s), 1 warning(s)
&lt;/PRE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt; &lt;BR /&gt;</description>
      <pubDate>Thu, 24 Mar 2011 16:05:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778627#M26418</guid>
      <dc:creator>Maxim</dc:creator>
      <dc:date>2011-03-24T16:05:09Z</dc:date>
    </item>
    <item>
      <title>From Linux (ifort) to Windows (IVF+MVS)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778628#M26419</link>
      <description>&lt;I&gt;&amp;gt; For Linux I use both gfortran and ifort and all ok!&lt;BR /&gt;&lt;BR /&gt;&lt;/I&gt;I do not think so. Getting code to compile and link when the code has mismatched calls is no feat, since Fortran has separate compilation and implicit interfaces. &lt;BR /&gt;&lt;BR /&gt;Just as not reading a newspapers does not prevent bad things from happening around the world, not using the diagnostic capabilities of the compiler does not make your code bug free. &lt;BR /&gt;&lt;BR /&gt;Bugs of the type that are relevant to the error messages shown have been recognized as being particularly bad because they can go unnoticed for several years and then come to life when least unexpected.</description>
      <pubDate>Thu, 24 Mar 2011 16:09:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778628#M26419</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2011-03-24T16:09:14Z</dc:date>
    </item>
    <item>
      <title>From Linux (ifort) to Windows (IVF+MVS)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778629#M26420</link>
      <description>Have you included the correct INTERFACE for MEMALLOC in your FORTRAN source where it calls MEMALLOC?&lt;BR /&gt;(If not, the compiler has no idea what it is or where it might look for it.)&lt;BR /&gt;&lt;BR /&gt;With an INTERFACE block included, the compiler will know to look for an external function called 'MEMALLOC' having three integer arguments when it tries to satisfy all external links to the .OBJ files created and used by your project, including the .OBJ file created by compiling MEMALLOC.C with your C-compiler (you must of course add the C-compiled .OBJ file to your project if you want it to be searched for external links along with your FORTRAN .OBJ files).&lt;BR /&gt;&lt;BR /&gt;You may have to find out EXACTLY what symbol the C-compiler creates for MEMALLOC in the .OBJ file in which it resides and get the FORTRAN compiler to match it using a compiler directive ATTRIBUTE involving STDCALL,REFERENCE and maybe ALIAS, and so on.</description>
      <pubDate>Thu, 24 Mar 2011 16:14:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778629#M26420</guid>
      <dc:creator>anthonyrichards</dc:creator>
      <dc:date>2011-03-24T16:14:02Z</dc:date>
    </item>
    <item>
      <title>From Linux (ifort) to Windows (IVF+MVS)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778630#M26421</link>
      <description>&lt;P&gt;Im sorry for my stupid questions. But if we have simple
programs like follow:&lt;/P&gt;

&lt;P&gt;Fortran:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;B&gt;PROGRAM&lt;/B&gt; HelloWorld&lt;/P&gt;&lt;P&gt; &lt;B&gt;CALL&lt;/B&gt; f&lt;/P&gt;&lt;P&gt;&lt;B&gt;END&lt;/B&gt; &lt;B&gt;PROGRAM&lt;/B&gt;
HelloWorld&lt;/P&gt;&lt;/BLOCKQUOTE&gt;





&lt;P&gt;C:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;&lt;P&gt;#include &lt;STDIO.H&gt;&lt;/STDIO.H&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void f_()&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt; printf("Hi! \n");&lt;/P&gt;&lt;P&gt;} &lt;/P&gt;&lt;/BLOCKQUOTE&gt;











&lt;P&gt;What should I add for compilation? &lt;/P&gt;</description>
      <pubDate>Thu, 24 Mar 2011 17:23:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778630#M26421</guid>
      <dc:creator>Maxim</dc:creator>
      <dc:date>2011-03-24T17:23:49Z</dc:date>
    </item>
    <item>
      <title>From Linux (ifort) to Windows (IVF+MVS)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778631#M26422</link>
      <description>When taking mixed Fortran and C code from linux to Windows using legacy interfacing, you run into the differing defaults (Windows default uppercase no underscore). iso_c_binding is a well documented good way to overcome this. All the legacy stuff also is covered in the interoperability section of ifort docs.&lt;BR /&gt;However, writing to stdout from C in a Fortran program raises portability issues no matter how you do it, on both Windows and linux.</description>
      <pubDate>Thu, 24 Mar 2011 18:39:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778631#M26422</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2011-03-24T18:39:09Z</dc:date>
    </item>
    <item>
      <title>From Linux (ifort) to Windows (IVF+MVS)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778632#M26423</link>
      <description>It does not look to me as if you made the C project a dependent of the Fortran project. You need to do that. Right click on the Fortran project and select "Project Dependencies...". In the dialog that comes up, check the box for your C project under "Depends on". Click Ok and then rebuild.</description>
      <pubDate>Thu, 24 Mar 2011 19:12:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778632#M26423</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2011-03-24T19:12:33Z</dc:date>
    </item>
    <item>
      <title>From Linux (ifort) to Windows (IVF+MVS)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778633#M26424</link>
      <description>&lt;P&gt;I did it in the beginning.&lt;/P&gt;

&lt;P&gt;Now project in Fortran depends on project in C.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Mar 2011 19:34:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778633#M26424</guid>
      <dc:creator>Maxim</dc:creator>
      <dc:date>2011-03-24T19:34:05Z</dc:date>
    </item>
    <item>
      <title>From Linux (ifort) to Windows (IVF+MVS)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778634#M26425</link>
      <description>At this point I'll ask that you zip the projects and attach them to a reply here so I can look at them. Please do a Build &amp;gt; Clean first.</description>
      <pubDate>Thu, 24 Mar 2011 19:45:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/From-Linux-ifort-to-Windows-IVF-MVS/m-p/778634#M26425</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2011-03-24T19:45:40Z</dc:date>
    </item>
  </channel>
</rss>

