<?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 Hi I am just trying to in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005491#M104738</link>
    <description>&lt;P&gt;Hi I am just trying to simulate loop in hmix_gm rather than the entire hmix_gm.&lt;/P&gt;

&lt;P&gt;in this stage all I want to do was copy paste a loop from hmix and definition of variables inside the loop from all the modules present.&lt;/P&gt;</description>
    <pubDate>Wed, 20 May 2015 06:26:32 GMT</pubDate>
    <dc:creator>aketh_t_</dc:creator>
    <dc:date>2015-05-20T06:26:32Z</dc:date>
    <item>
      <title>compilation error while building code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005484#M104731</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I have been trying to compile a file with the following variable definitions. And I use the intel 15 set of compilers.&lt;/P&gt;

&lt;P&gt;integer (int_kind), parameter :: max_blocks_clinic = 65&lt;/P&gt;

&lt;P&gt;.&lt;/P&gt;

&lt;P&gt;.&lt;/P&gt;

&lt;P&gt;.&lt;/P&gt;

&lt;P&gt;.&lt;/P&gt;

&lt;P&gt;integer (int_kind) :: nblocks_x=8&lt;/P&gt;

&lt;P&gt;integer (int_kind) :: nblocks_y=8&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;type tlt_info&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; real (r8), dimension(nx_block,ny_block,max_blocks_clinic) :: &amp;amp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DIABATIC_DEPTH, &amp;nbsp;&amp;amp; &amp;nbsp; ! depth of the diabatic region at the&lt;BR /&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; ! &amp;nbsp;surface, i.e. mean mixed or boundary layer&lt;BR /&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; ! &amp;nbsp;depth&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;THICKNESS, &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp; &amp;nbsp; ! transition layer thickness&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;INTERIOR_DEPTH &amp;nbsp; &amp;nbsp; &amp;nbsp; ! depth at which the interior, adiabatic&lt;BR /&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; ! &amp;nbsp;region starts, i.e.&lt;BR /&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; ! &amp;nbsp; = TLT%DIABATIC_DEPTH + TLT%THICKNESS&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; integer (int_kind), &amp;amp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;dimension(nx_block,ny_block,max_blocks_clinic) :: &amp;amp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;K_LEVEL, &amp;nbsp;&amp;amp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;! k level at or below which the interior,&lt;BR /&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; ! &amp;nbsp;adiabatic region starts&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ZTW &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;! designates if the interior region&lt;BR /&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; ! &amp;nbsp;starts below depth zt or zw.&lt;BR /&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; ! &amp;nbsp;( = 1 for zt, = 2 for zw )&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; end type tlt_info&lt;/P&gt;

&lt;P&gt;However I got the following error.&lt;/P&gt;

&lt;P&gt;loop.F90(55): error #6530: The array spec for this component must be of explicit shape and each bound must be an initialization expression. &amp;nbsp; [DIABATIC_DEPTH]&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DIABATIC_DEPTH, &amp;nbsp;&amp;amp; &amp;nbsp; ! depth of the diabatic region at the&lt;BR /&gt;
	-----------^&lt;BR /&gt;
	loop.F90(58): error #6530: The array spec for this component must be of explicit shape and each bound must be an initialization expression. &amp;nbsp; [THICKNESS]&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;THICKNESS, &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;amp; &amp;nbsp; ! transition layer thickness&lt;BR /&gt;
	-----------^&lt;BR /&gt;
	loop.F90(59): error #6530: The array spec for this component must be of explicit shape and each bound must be an initialization expression. &amp;nbsp; [INTERIOR_DEPTH]&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;INTERIOR_DEPTH &amp;nbsp; &amp;nbsp; &amp;nbsp; ! depth at which the interior, adiabatic&lt;BR /&gt;
	-----------^&lt;BR /&gt;
	loop.F90(64): error #6530: The array spec for this component must be of explicit shape and each bound must be an initialization expression. &amp;nbsp; [K_LEVEL]&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;K_LEVEL, &amp;nbsp;&amp;amp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;! k level at or below which the interior,&lt;BR /&gt;
	-----------^&lt;BR /&gt;
	loop.F90(66): error #6530: The array spec for this component must be of explicit shape and each bound must be an initialization expression. &amp;nbsp; [ZTW]&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ZTW &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;! designates if the interior region&lt;/P&gt;

&lt;P&gt;Any help on how this can be resolved???&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2015 06:07:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005484#M104731</guid>
      <dc:creator>aketh_t_</dc:creator>
      <dc:date>2015-05-18T06:07:40Z</dc:date>
    </item>
    <item>
      <title>Maybe not the best message</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005485#M104732</link>
      <description>&lt;P&gt;Maybe not the best message but how about making each of those integers parameter?&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2015 11:15:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005485#M104732</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2015-05-18T11:15:26Z</dc:date>
    </item>
    <item>
      <title>I tried it now.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005486#M104733</link>
      <description>&lt;P&gt;I tried it now.&lt;/P&gt;

&lt;P&gt;Still the error remains the same. Is it got to do with any flags coz , I have compiled a few files with this definition as a part of CESM.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2015 13:47:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005486#M104733</guid>
      <dc:creator>aketh_t_</dc:creator>
      <dc:date>2015-05-18T13:47:08Z</dc:date>
    </item>
    <item>
      <title>If it is desired that the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005487#M104734</link>
      <description>&lt;P&gt;If it is desired that the user defined type contain arrays whose sizes are determined at run-time, make those array components ALLOCATABLE (and perform allocation/deallocation after they are not needed, to save memory footprint), or consider using PDTs (parameterized derived types).&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2015 13:53:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005487#M104734</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-05-18T13:53:22Z</dc:date>
    </item>
    <item>
      <title>Quote:Aketh T. wrote: Is it</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005488#M104735</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Aketh T. wrote:&lt;BR /&gt;&amp;nbsp;Is it got to do with any flags &lt;/BLOCKQUOTE&gt; I don't think so. Please provide a (compilable) complete code example.&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2015 13:55:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005488#M104735</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-05-18T13:55:41Z</dc:date>
    </item>
    <item>
      <title>The code size is huge.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005489#M104736</link>
      <description>&lt;P&gt;The code size is huge.&lt;/P&gt;

&lt;P&gt;I can give a brief pointers about it and a link.&lt;/P&gt;

&lt;P&gt;there are two files blocks.F90 (http://www.cesm.ucar.edu/models/cesm1.1/cesm/cesmBbrowser/html_code/pop/blocks.F90.html)&lt;/P&gt;

&lt;P&gt;and&lt;/P&gt;

&lt;P&gt;hmix_gm.F90 (http://www.cesm.ucar.edu/models/cesm1.0/cesm/cesmBbrowser/html_code/pop/hmix_gm.F90.html)&lt;/P&gt;

&lt;P&gt;(try ctrl+F and look for type tlt_info)&lt;/P&gt;

&lt;P&gt;These are just a few files that are a part of CESM. I have compiled the entire CESM and run these models, and they work.&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2015 14:04:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005489#M104736</guid>
      <dc:creator>aketh_t_</dc:creator>
      <dc:date>2015-05-18T14:04:10Z</dc:date>
    </item>
    <item>
      <title>The file blocks.F90 contains</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005490#M104737</link>
      <description>&lt;P&gt;The file blocks.F90 contains declarations for the named constants nx_block and ny_block. In order to use these constants in your declarations, you must have a USE BLOCKS statement in your code, or provide some other way to make these constants known (host association, USE of a module that uses BLOCKS.mod, etc.).&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2015 14:51:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005490#M104737</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-05-18T14:51:26Z</dc:date>
    </item>
    <item>
      <title>Hi I am just trying to</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005491#M104738</link>
      <description>&lt;P&gt;Hi I am just trying to simulate loop in hmix_gm rather than the entire hmix_gm.&lt;/P&gt;

&lt;P&gt;in this stage all I want to do was copy paste a loop from hmix and definition of variables inside the loop from all the modules present.&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2015 06:26:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005491#M104738</guid>
      <dc:creator>aketh_t_</dc:creator>
      <dc:date>2015-05-20T06:26:32Z</dc:date>
    </item>
    <item>
      <title>I agree, I don't see anything</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005492#M104739</link>
      <description>&lt;P&gt;I agree, I don't see anything to solve here. For example, assuming nblocks_x and nblocks_y to be a typo, and making the corrections discussed above,&amp;nbsp;the following compiles:&lt;/P&gt;
&lt;P&gt;module mymod&lt;BR /&gt;&amp;nbsp; integer, parameter :: int_kind=selected_int_kind(8)&lt;BR /&gt;&amp;nbsp; integer, parameter :: r8&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =selected_real_kind(12)&amp;nbsp;&lt;BR /&gt;&amp;nbsp; integer (int_kind), parameter :: max_blocks_clinic = 65&lt;BR /&gt;&amp;nbsp; integer (int_kind), parameter :: nx_block=8&lt;BR /&gt;&amp;nbsp; integer (int_kind), parameter :: ny_block=8&lt;/P&gt;
&lt;P&gt;&amp;nbsp; type tlt_info&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real(r8), dimension(nx_block,ny_block,max_blocks_clinic) :: &amp;amp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DIABATIC_DEPTH,&amp;nbsp; &amp;amp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; THICKNESS,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;amp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INTERIOR_DEPTH&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; integer(int_kind), &amp;amp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dimension(nx_block,ny_block,max_blocks_clinic) :: &amp;amp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; K_LEVEL,&amp;nbsp; &amp;amp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ZTW&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; end type tlt_info&lt;/P&gt;
&lt;P&gt;end module&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 May 2015 00:30:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005492#M104739</guid>
      <dc:creator>Martyn_C_Intel</dc:creator>
      <dc:date>2015-05-21T00:30:38Z</dc:date>
    </item>
    <item>
      <title>Quote:aketh t. wrote:</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005493#M104740</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;aketh t. wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;These are just a few files that are a part of CESM. I have compiled the entire CESM and run these models, and they work. (#6)&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Hi I am just trying to simulate loop in hmix_gm rather than the entire hmix_gm. I&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;n this stage all I want to do was copy paste a loop from hmix and definition of variables inside the loop from all the modules present. (#8)&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Cutting and pasting fragments of code often produces new code that is not compilable. You have modified code from a widely used package -- a package which, presumably, is mostly error-free. The modified code in this instance is not accepted by the compiler, because of syntactic errors. &amp;nbsp;The fact that similar modifications that you made earlier gave you working code does not guarantee that the present modification is error-free.&amp;nbsp;&lt;SPAN style="font-size: 13.0080003738403px; line-height: 13.0080003738403px;"&gt;Therefore, unless you show us your modifications, no progress can be made.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 May 2015 14:50:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/compilation-error-while-building-code/m-p/1005493#M104740</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-05-21T14:50:30Z</dc:date>
    </item>
  </channel>
</rss>

