<?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 1. Yes in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-C-C/m-p/1071620#M119613</link>
    <description>&lt;P&gt;1. Yes&lt;/P&gt;

&lt;P&gt;2. Yes.&lt;/P&gt;

&lt;P&gt;3. I don't think so. That feature is provided by the language-specific integration and the integrations don't talk to each other.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 03 Apr 2017 19:22:21 GMT</pubDate>
    <dc:creator>Steve_Lionel</dc:creator>
    <dc:date>2017-04-03T19:22:21Z</dc:date>
    <item>
      <title>Fortran C/C++</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-C-C/m-p/1071616#M119609</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;

&lt;P&gt;I have a Digital Fortran - Microsoft C/C++ mix code program compiled under Visual Studio version 6 and would like to move to a newer environment. I have already installed Microsoft Visual Studio 2013 Community Edition with C++ component and have been developing pure C/C++ applications on it. I want to know:&lt;BR /&gt;
	1. Would it be enough to get just "Intel Parallel Studio XE Composer Edition for Fortran Windows"?&lt;BR /&gt;
	2. Would Intel Fortran mix with Microsoft C/C++ code and libraries, especially with MFC?&lt;BR /&gt;
	3. If either 1. or 2. is No, would "Intel Parallel Studio XE Composer Edition for Fortran and C++ Windows" be OK with MFC?&lt;/P&gt;

&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 31 Mar 2017 17:33:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-C-C/m-p/1071616#M119609</guid>
      <dc:creator>CK_L_</dc:creator>
      <dc:date>2017-03-31T17:33:41Z</dc:date>
    </item>
    <item>
      <title>1. Yes</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-C-C/m-p/1071617#M119610</link>
      <description>&lt;P&gt;1. Yes&lt;BR /&gt;
	2. Yes&lt;BR /&gt;
	3. N/A&lt;/P&gt;

&lt;P&gt;Note that as of VS2002, a single project can no longer have multiple languages. So what happens is that you have a VS "Solution" with two (or more) projects; one for the executable in whichever language the main program is, and one that is a static library for the code in the other language that gets linked in to the executable.&lt;/P&gt;

&lt;P&gt;For a DVF project, you may be able to get this split automatically by:&lt;/P&gt;

&lt;OL&gt;
	&lt;LI&gt;Open the VS6 project with VS2013&lt;/LI&gt;
	&lt;LI&gt;Right click on the project and select "Extract Compaq Visual Fortran Project Items" (something like that)&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;It should split the project and create two as needed. Some tweaking might be needed after that. Visual C++ in VS2013 no longer links in libraries from non-C++ dependent projects, so you have to add the Fortran library (if C++ is main) to the C++ project manually. Also sometimes there will be a /machine:x86 in the "Additional Options" for the Fortran project - if so, remove it.&lt;/P&gt;

&lt;P&gt;See also&amp;nbsp;&lt;/P&gt;

&lt;UL style="box-sizing: border-box; margin-top: 1.6em; margin-bottom: 20px; margin-left: 0px; padding-left: 30px; list-style-position: outside; overflow: hidden; color: rgb(102, 102, 102); font-family: Arial, Tahoma, Helvetica, sans-serif; font-size: 14px;"&gt;
	&lt;LI style="box-sizing: border-box; margin-bottom: 10px; padding-left: 10px;"&gt;&lt;A href="https://software.intel.com/en-us/articles/configuring-visual-studio-for-mixed-language-applications" rel="nofollow" style="box-sizing: border-box; color: rgb(0, 174, 239); outline: 0px;" target="_blank"&gt;How do I configure Microsoft Visual C++ for developing mixed Fortran-C applications?&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Fri, 31 Mar 2017 20:52:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-C-C/m-p/1071617#M119610</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2017-03-31T20:52:28Z</dc:date>
    </item>
    <item>
      <title>Thanks Steve, it helps a lot.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-C-C/m-p/1071618#M119611</link>
      <description>&lt;P&gt;Thanks Steve, it helps a lot.&lt;/P&gt;</description>
      <pubDate>Fri, 31 Mar 2017 22:13:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-C-C/m-p/1071618#M119611</guid>
      <dc:creator>CK_L_</dc:creator>
      <dc:date>2017-03-31T22:13:26Z</dc:date>
    </item>
    <item>
      <title>Hi Steve,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-C-C/m-p/1071619#M119612</link>
      <description>&lt;P&gt;Hi Steve,&lt;BR /&gt;
	Suppose I use C/C++ for the executable and Fortran for the library, I need to know:&lt;BR /&gt;
	1. in debug, can I step from the C/C++ code into the Fortran library code seamlessly?&lt;BR /&gt;
	2. can Fortran calls C/C++ functions in the executable project or in another C/C++ library?&lt;BR /&gt;
	3. in VS, on right click an function name and select "Find All References", would it show references from the other language?&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;i.e., can I look for references from all the projects in the solution?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2017 16:04:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-C-C/m-p/1071619#M119612</guid>
      <dc:creator>CK_L_</dc:creator>
      <dc:date>2017-04-03T16:04:55Z</dc:date>
    </item>
    <item>
      <title>1. Yes</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-C-C/m-p/1071620#M119613</link>
      <description>&lt;P&gt;1. Yes&lt;/P&gt;

&lt;P&gt;2. Yes.&lt;/P&gt;

&lt;P&gt;3. I don't think so. That feature is provided by the language-specific integration and the integrations don't talk to each other.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2017 19:22:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-C-C/m-p/1071620#M119613</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2017-04-03T19:22:21Z</dc:date>
    </item>
    <item>
      <title>You can perform Search Files</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-C-C/m-p/1071621#M119614</link>
      <description>&lt;P&gt;You can perform Search Files (select within&amp;nbsp;Solution).&lt;/P&gt;

&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2017 19:49:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-C-C/m-p/1071621#M119614</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2017-04-03T19:49:37Z</dc:date>
    </item>
    <item>
      <title>Thanks Steve and Jim,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-C-C/m-p/1071622#M119615</link>
      <description>&lt;P&gt;Thanks Steve and Jim,&lt;/P&gt;

&lt;P&gt;Search would return any line with the searched text, not just those using it as a function call. It is good to know though.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2017 19:58:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-C-C/m-p/1071622#M119615</guid>
      <dc:creator>CK_L_</dc:creator>
      <dc:date>2017-04-03T19:58:30Z</dc:date>
    </item>
  </channel>
</rss>

