<?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 Comments  in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755588#M11075</link>
    <description>If you want to use fixed form input with .f90 file name, there is an option for that, but the usual way is to continue to use those file names with .f or .for suffixes.</description>
    <pubDate>Sun, 22 May 2011 13:20:56 GMT</pubDate>
    <dc:creator>TimP</dc:creator>
    <dc:date>2011-05-22T13:20:56Z</dc:date>
    <item>
      <title>Comments</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755585#M11072</link>
      <description>Hi everybody! I like make a question of curiosity. I normaly do the comments in fortran 95/90 with "!", but I read in Intel Fortran Programmers Reference that I can create a comment with "C or c",with "*" and with "#", but I try in hola.f90, and I get the following errors:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;I&gt;Estoy compilando, tardo un ratn...&lt;BR /&gt;hola.f90(2): error #5082: Syntax error, found IDENTIFIER 'THIS' when expecting one of: ( % [ : . = =&amp;gt;&lt;BR /&gt;C THIS IS A COMMENT&lt;BR /&gt;--^&lt;BR /&gt;hola.f90(3): error #5082: Syntax error, found '*' when expecting one of: &lt;/I&gt;&lt;LABEL&gt;&lt;I&gt; &lt;END-OF-STATEMENT&gt; ; BLOCK BLOCKDATA PROGRAM MODULE TYPE BYTE CHARACTER ...&lt;BR /&gt;* THIS IS A COMENT&lt;BR /&gt;^&lt;BR /&gt;compilation aborted for hola.f90 (code 1)&lt;BR /&gt;make: *** [hola.o] Error 1&lt;/END-OF-STATEMENT&gt;&lt;/I&gt;&lt;BR /&gt;&lt;BR /&gt;I'm using Ubuntu 32 bits.&lt;BR /&gt;&lt;/LABEL&gt;</description>
      <pubDate>Sat, 21 May 2011 20:58:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755585#M11072</guid>
      <dc:creator>felipin85</dc:creator>
      <dc:date>2011-05-21T20:58:12Z</dc:date>
    </item>
    <item>
      <title>Comments</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755586#M11073</link>
      <description>&lt;P&gt;The .f90 extension (and .f95, .f2k, .f03, .f08, ...) is usually associated to free-form source files, and therefore only "!" is allowed to indicate the beginning of a comment (anywhere between columns 1 and 132).&lt;/P&gt;&lt;P&gt;The fixed-form source files (which usually have extensions .f, .for, .f77, .ftn, ...) allow "C" or "*" but only in the first column. Fixed-form files also allow "!" anywhere between columns 1 and 5 and between columns 7 and 72.&lt;/P&gt;&lt;P&gt;The compiler will let you put "!" after column 132 (in free-form) or after column 73 (in fixed form), but some extra flags might be required and it's not a portable solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 22 May 2011 03:32:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755586#M11073</guid>
      <dc:creator>John4</dc:creator>
      <dc:date>2011-05-22T03:32:14Z</dc:date>
    </item>
    <item>
      <title>Comments</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755587#M11074</link>
      <description>I was surprised it did not work because I read in the guide intel fortran. It's a shame, because I would have liked to reuse code that I have on. for or. f77 and change them. f90.</description>
      <pubDate>Sun, 22 May 2011 12:29:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755587#M11074</guid>
      <dc:creator>felipin85</dc:creator>
      <dc:date>2011-05-22T12:29:59Z</dc:date>
    </item>
    <item>
      <title>Comments</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755588#M11075</link>
      <description>If you want to use fixed form input with .f90 file name, there is an option for that, but the usual way is to continue to use those file names with .f or .for suffixes.</description>
      <pubDate>Sun, 22 May 2011 13:20:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755588#M11075</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2011-05-22T13:20:56Z</dc:date>
    </item>
    <item>
      <title>Comments</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755589#M11076</link>
      <description>Thanks for yor response! which is this option? But, Is possilble the I using the fortran 90 options and I name as .for? Thanks</description>
      <pubDate>Sun, 22 May 2011 18:35:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755589#M11076</guid>
      <dc:creator>felipin85</dc:creator>
      <dc:date>2011-05-22T18:35:37Z</dc:date>
    </item>
    <item>
      <title>Comments</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755590#M11077</link>
      <description>I think that you can use -fixed and -free options to specifically tell the compiler that the program is Fixed Form (F77 style) and Free Form (F90 and later) respectively. Unless I am missing something, these options will override the extension of the filename.</description>
      <pubDate>Sun, 22 May 2011 19:34:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755590#M11077</guid>
      <dc:creator>Udit_P_Intel</dc:creator>
      <dc:date>2011-05-22T19:34:39Z</dc:date>
    </item>
    <item>
      <title>Comments</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755591#M11078</link>
      <description>Ok, then I must add in the makefile in the line:&lt;BR /&gt;&lt;BR /&gt;FFLAGS=-openmp -O3 -traceback &lt;BR /&gt;&lt;BR /&gt;the option -fixe or free?:&lt;BR /&gt;&lt;BR /&gt;FFLAGS=-openmp -O3 -traceback -fixed&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks for your help&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Sun, 22 May 2011 19:56:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755591#M11078</guid>
      <dc:creator>felipin85</dc:creator>
      <dc:date>2011-05-22T19:56:46Z</dc:date>
    </item>
    <item>
      <title>Comments</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755592#M11079</link>
      <description>You should add -fixed in the makefile. This will enable a .f90 file to be treated in fixed form. In other words, your original code should work without the syntax error with this option.&lt;BR /&gt;&lt;BR /&gt;Best!&lt;BR /&gt;-Udit</description>
      <pubDate>Sun, 22 May 2011 20:36:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755592#M11079</guid>
      <dc:creator>Udit_P_Intel</dc:creator>
      <dc:date>2011-05-22T20:36:16Z</dc:date>
    </item>
    <item>
      <title>Comments</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755593#M11080</link>
      <description>The ! form of comments will work regardless of fixed or free format.</description>
      <pubDate>Sun, 22 May 2011 21:47:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755593#M11080</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2011-05-22T21:47:14Z</dc:date>
    </item>
    <item>
      <title>Comments</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755594#M11081</link>
      <description>Please do not use -fixed or -free. Instead, rename the source file to have the .f90 file type if it is free-form source, or .f or .for if it is fixed-form source.&lt;BR /&gt;&lt;BR /&gt;You misunderstood the documentation - the part where it talks about C as a comment delimiter is in the section for fixed-form source specifically.&lt;BR /&gt;&lt;BR /&gt;I strongly recommend the use of free-form source in all new development.</description>
      <pubDate>Mon, 23 May 2011 15:33:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755594#M11081</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2011-05-23T15:33:29Z</dc:date>
    </item>
    <item>
      <title>Comments</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755595#M11082</link>
      <description>Ok, Thanks for your help!</description>
      <pubDate>Mon, 23 May 2011 15:38:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Comments/m-p/755595#M11082</guid>
      <dc:creator>felipin85</dc:creator>
      <dc:date>2011-05-23T15:38:32Z</dc:date>
    </item>
  </channel>
</rss>

