<?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: quick question: compiling .f and .f90 in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/quick-question-compiling-f-and-f90/m-p/740252#M223</link>
    <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/25055"&gt;rreis&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;is there any problem in compiling .f and .f90 files into the same program?&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;No.</description>
    <pubDate>Mon, 26 Oct 2009 15:24:29 GMT</pubDate>
    <dc:creator>Kevin_D_Intel</dc:creator>
    <dc:date>2009-10-26T15:24:29Z</dc:date>
    <item>
      <title>quick question: compiling .f and .f90</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/quick-question-compiling-f-and-f90/m-p/740251#M222</link>
      <description>is there any problem in compiling .f and .f90 files into the same program?</description>
      <pubDate>Mon, 26 Oct 2009 15:06:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/quick-question-compiling-f-and-f90/m-p/740251#M222</guid>
      <dc:creator>rreis</dc:creator>
      <dc:date>2009-10-26T15:06:25Z</dc:date>
    </item>
    <item>
      <title>Re: quick question: compiling .f and .f90</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/quick-question-compiling-f-and-f90/m-p/740252#M223</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/25055"&gt;rreis&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;is there any problem in compiling .f and .f90 files into the same program?&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;No.</description>
      <pubDate>Mon, 26 Oct 2009 15:24:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/quick-question-compiling-f-and-f90/m-p/740252#M223</guid>
      <dc:creator>Kevin_D_Intel</dc:creator>
      <dc:date>2009-10-26T15:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: quick question: compiling .f and .f90</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/quick-question-compiling-f-and-f90/m-p/740253#M224</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
You may, however, have to compile the .f and .f90 sources on separate command lines, and then link them together. I know in the past that it did not work to mix file types on the same ifort line - have not tried that lately.&lt;BR /&gt;</description>
      <pubDate>Mon, 26 Oct 2009 15:32:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/quick-question-compiling-f-and-f90/m-p/740253#M224</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2009-10-26T15:32:52Z</dc:date>
    </item>
    <item>
      <title>Re: quick question: compiling .f and .f90</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/quick-question-compiling-f-and-f90/m-p/740254#M225</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/336209"&gt;Steve Lionel (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;You may, however, have to compile the .f and .f90 sources on separate command lines, and then link them together. I know in the past that it did not work to mix file types on the same ifort line - have not tried that lately.&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;We are good in this regard with 11.1. I did not check earlier releases.&lt;BR /&gt;&lt;BR /&gt;$ cat -n main.f90&lt;BR /&gt; 1 program demo&lt;BR /&gt; 2 call sub1&lt;BR /&gt; 3 end&lt;BR /&gt;&lt;BR /&gt;$ cat -n sub1.f&lt;BR /&gt; 1 subroutine sub1&lt;BR /&gt; 2 write(*,*)'In sub1'&lt;BR /&gt; 3 end&lt;BR /&gt;&lt;BR /&gt;$ ifort -V main.f90 sub1.f&lt;BR /&gt;Intel Fortran Intel 64 Compiler Professional for applications running on Intel 64, Version 11.1 Build 20091012 Package ID: l_cprof_p_11.1.059&lt;BR /&gt;Copyright (C) 1985-2009 Intel Corporation. All rights reserved.&lt;BR /&gt;&lt;BR /&gt;Intel Fortran 11.1-2620&lt;BR /&gt;Intel Fortran 11.1-2620&lt;BR /&gt;GNU ld version 2.17.50.0.6-5.el5 20061020&lt;BR /&gt;&lt;BR /&gt;$ ./a.out&lt;BR /&gt;In sub1&lt;BR /&gt;</description>
      <pubDate>Mon, 26 Oct 2009 16:04:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/quick-question-compiling-f-and-f90/m-p/740254#M225</guid>
      <dc:creator>Kevin_D_Intel</dc:creator>
      <dc:date>2009-10-26T16:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: quick question: compiling .f and .f90</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/quick-question-compiling-f-and-f90/m-p/740255#M226</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
cool. many thanks for answering (and producing ifort)&lt;BR /&gt;</description>
      <pubDate>Mon, 26 Oct 2009 16:06:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/quick-question-compiling-f-and-f90/m-p/740255#M226</guid>
      <dc:creator>rreis</dc:creator>
      <dc:date>2009-10-26T16:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: quick question: compiling .f and .f90</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/quick-question-compiling-f-and-f90/m-p/740256#M227</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
Kevin, your test needed to have the .f file include fixed-form continuation or other coding that would not be acceptable in free-form source. However I did test this just now and it does work, so we're good.&lt;BR /&gt;</description>
      <pubDate>Mon, 26 Oct 2009 16:48:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/quick-question-compiling-f-and-f90/m-p/740256#M227</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2009-10-26T16:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: quick question: compiling .f and .f90</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/quick-question-compiling-f-and-f90/m-p/740257#M228</link>
      <description>&lt;BR /&gt;Yes good point, or reverse the order of the source files to see if the lack of fixed-form indentation in main.f90 triggered errors.</description>
      <pubDate>Mon, 26 Oct 2009 20:39:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/quick-question-compiling-f-and-f90/m-p/740257#M228</guid>
      <dc:creator>Kevin_D_Intel</dc:creator>
      <dc:date>2009-10-26T20:39:55Z</dc:date>
    </item>
  </channel>
</rss>

