<?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: Intel Compiler + Visual Studio Integration in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Intel-Compiler-Visual-Studio-Integration/m-p/1739506#M178435</link>
    <description>&lt;P&gt;hard to know what you are doing and what the problem is. In The project to a clean and then a build to build everything. Post the buildlog.html file. That will at least produce something concrete for people to look at.&lt;/P&gt;</description>
    <pubDate>Wed, 04 Mar 2026 09:22:01 GMT</pubDate>
    <dc:creator>andrew_4619</dc:creator>
    <dc:date>2026-03-04T09:22:01Z</dc:date>
    <item>
      <title>Intel Compiler + Visual Studio Integration</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Intel-Compiler-Visual-Studio-Integration/m-p/1739446#M178432</link>
      <description>&lt;P&gt;Hello everyone,&lt;BR /&gt;I recently started to pick up Fortran using the intel compiler in the microsoft visual studio environment. I set up a bunch of projects (following the book modern fortran - building efficient parallel applications) by milan curic. Recently i encountered the first bug which i did not understand:&lt;BR /&gt;So far i have always put my modules in separate files (like mod_initial.f90). If i understand it correctly, the intel compiler automatically scans the project for those definitions, creating .mod files out of these definitions before compiling the .exe file out of the .f90 file which contains the program definition. For a new project, which i set up totally similarly, the compiler kept throwing errors like&lt;BR /&gt;error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MOD_DIFF]&lt;BR /&gt;I tried to remove the mod.f90 files in question by deleting them and adding new definitions and excluding/including them from the build in the file properties, but but could not resolve the problem. the .mod files were not created when compiling. i can circumvent this problem by putting my module definition in the same .f90 file as the program definition (in that case the .mod file is getting created as intended and the program can use the functions and subroutines as defined). but i figure for bigger projects it would be better to organise the modules in seperate files. do you have any trouble-shooting hints why this behaviour occurs? i am especially puzzled since the automatic .mod file generation worked fine in previous projects.&lt;BR /&gt;thanks for your kind help&lt;/P&gt;&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2026 03:26:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Intel-Compiler-Visual-Studio-Integration/m-p/1739446#M178432</guid>
      <dc:creator>richard_adas</dc:creator>
      <dc:date>2026-03-04T03:26:00Z</dc:date>
    </item>
    <item>
      <title>Re: Intel Compiler + Visual Studio Integration</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Intel-Compiler-Visual-Studio-Integration/m-p/1739506#M178435</link>
      <description>&lt;P&gt;hard to know what you are doing and what the problem is. In The project to a clean and then a build to build everything. Post the buildlog.html file. That will at least produce something concrete for people to look at.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2026 09:22:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Intel-Compiler-Visual-Studio-Integration/m-p/1739506#M178435</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2026-03-04T09:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: Intel Compiler + Visual Studio Integration</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Intel-Compiler-Visual-Studio-Integration/m-p/1739544#M178441</link>
      <description>&lt;P&gt;&amp;gt;&amp;gt;&lt;EM&gt;I set up a bunch of projects...&amp;nbsp;i have always put my modules in separate files&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Assuming the module files are located in a separate project from the main (PROGRAM) project, then in the Project Dependencies of the main project, you must check the other projects:&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2026-03-04 095326.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/71371i9F4D79FF4E5A2D64/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="Screenshot 2026-03-04 095326.png" alt="Screenshot 2026-03-04 095326.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;Jim Dempsey&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2026 15:57:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Intel-Compiler-Visual-Studio-Integration/m-p/1739544#M178441</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2026-03-04T15:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: Intel Compiler + Visual Studio Integration</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Intel-Compiler-Visual-Studio-Integration/m-p/1739649#M178449</link>
      <description>&lt;P&gt;hello Andrew,&lt;BR /&gt;I tried the clean and rebuild and it unfortunately did not work.&lt;BR /&gt;i attached the BuildLog and a zip file with my project inside. hope it clarifies something.&lt;BR /&gt;highly appreciate the help!&lt;BR /&gt;&lt;BR /&gt;best regards&lt;BR /&gt;Richard&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2026 02:37:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Intel-Compiler-Visual-Studio-Integration/m-p/1739649#M178449</guid>
      <dc:creator>richard_adas</dc:creator>
      <dc:date>2026-03-05T02:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: Intel Compiler + Visual Studio Integration</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Intel-Compiler-Visual-Studio-Integration/m-p/1739652#M178450</link>
      <description>&lt;P&gt;hello Jim,&lt;BR /&gt;Apologies for the confusion. before I just added new mod files by right-clicking a folder in my project and adding a fortran free-form file (.f90). The compiler would compile the module definitions inside and therefore create the .mod files. since this week, the compiler does not compile files i add with this method to my project anymore.&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2026-03-05 10_43_05-tsunami - tsunami.f90 - Microsoft Visual Studio.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/71383i2C5E46A908C91F83/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="2026-03-05 10_43_05-tsunami - tsunami.f90 - Microsoft Visual Studio.png" alt="2026-03-05 10_43_05-tsunami - tsunami.f90 - Microsoft Visual Studio.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;any ideas how i can ensure compilation of all files in my project? according to the developer guide the compiler should scan all source files in the projects for module definitions in the use/include statement&lt;BR /&gt;&lt;A href="https://www.intel.com/content/www/us/en/docs/fortran-compiler/developer-guide-reference/2025-3/create-a-new-project.html" target="_blank" rel="noopener"&gt;https://www.intel.com/content/www/us/en/docs/fortran-compiler/developer-guide-reference/2025-3/create-a-new-project.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;thanks for the help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2026 02:51:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Intel-Compiler-Visual-Studio-Integration/m-p/1739652#M178450</guid>
      <dc:creator>richard_adas</dc:creator>
      <dc:date>2026-03-05T02:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: Intel Compiler + Visual Studio Integration</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Intel-Compiler-Visual-Studio-Integration/m-p/1739710#M178452</link>
      <description>&lt;P&gt;Well I downloaded your project and it builds OK&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2026-03-05 092240.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/71388i2D8EBF2BA07BB2BC/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="Screenshot 2026-03-05 092240.png" alt="Screenshot 2026-03-05 092240.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I looked at your build log. You tried to compile tsunami.f90 and it fails because mod_initial.f90 and mod_diff.f90 contain modules that tsunami.f90 uses. These must first have been successfully compiled for it to work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But that is the wrong approach, build the *project*&amp;nbsp; and it should build all the things that are out of date that need building in an order that works. Building an individual file will only work if all the dependencies have been already built.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2026 09:28:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Intel-Compiler-Visual-Studio-Integration/m-p/1739710#M178452</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2026-03-05T09:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: Intel Compiler + Visual Studio Integration</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Intel-Compiler-Visual-Studio-Integration/m-p/1739741#M178456</link>
      <description>&lt;P&gt;Richard,&lt;/P&gt;&lt;P&gt;You should read your error message. They should give you some insight as to what is happening.&lt;/P&gt;&lt;P&gt;Follow&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/66560"&gt;@andrew_4619&lt;/a&gt;&amp;nbsp;advice and build the Solution (or if you wish the project when solution has only one project).&lt;/P&gt;&lt;P&gt;In reading your build log (sans options):&lt;/P&gt;&lt;P&gt;Compiling with Intel® Fortran Compiler 2025.3.2 [Intel(R) 64]...&lt;BR /&gt;ifx C:\Users\Richard\source\repos\tsunami\tsunami.f90&lt;BR /&gt;C:\Users\Richard\source\repos\tsunami\tsunami.f90(51):&lt;/P&gt;&lt;P&gt;error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MOD_INITIAL]&lt;BR /&gt;use mod_initial, only: set_gaussian&lt;BR /&gt;------------^&lt;BR /&gt;C:\Users\Richard\source\repos\tsunami\tsunami.f90(50):&lt;/P&gt;&lt;P&gt;error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MOD_DIFF]&lt;BR /&gt;use mod_diff, only: diff =&amp;amp;gt diff_centered&lt;BR /&gt;------------^&lt;BR /&gt;C:\Users\Richard\source\repos\tsunami\tsunami.f90(117):&lt;/P&gt;&lt;P&gt;error #6404: This name does not have a type, and must have an explicit type. [DIFF]&lt;BR /&gt;u = u - (u * diff(u) + g * diff(h)) / dx * dt ! update velocity using finite difference and array operations&lt;BR /&gt;-------------------------^&lt;BR /&gt;C:\Users\Richard\source\repos\tsunami\tsunami.f90(50):&lt;/P&gt;&lt;P&gt;error #6581: Unresolved rename. [DIFF]&lt;BR /&gt;use mod_diff, only: diff =&amp;amp;gt diff_centered&lt;BR /&gt;----------------------------^&lt;BR /&gt;C:\Users\Richard\source\repos\tsunami\tsunami.f90(51):&lt;/P&gt;&lt;P&gt;error #6580: Name in only-list does not exist or is not accessible. [SET_GAUSSIAN]&lt;BR /&gt;use mod_initial, only: set_gaussian&lt;BR /&gt;-------------------------------^&lt;BR /&gt;compilation aborted for C:\Users\Richard\source\repos\tsunami\tsunami.f90 (code 1)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;tsunami - 6 error(s), 0 warning(s)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is clear that you are only compiling tsunami.f90 and not the whole Solution (and all the projects (1) held within).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2026 15:19:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Intel-Compiler-Visual-Studio-Integration/m-p/1739741#M178456</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2026-03-05T15:19:15Z</dc:date>
    </item>
  </channel>
</rss>

