2

First I install Ms Visual Studio Community 2017 from oficial site. That Works fine.

Next I install Intel® Parallel Studio XE Cluster Edition (includes Fortran and C/C++) from Intel Developer Zone Site. At that site was a free offer the tool for students.

The installation was installed the next softwares:

Intel Parallel Studio XE 2017

But when I try to create a new Fortran Project I didn't find the option on the Visual Studio Community 2017.

New Project on Visual Studio Community 2017

Then I search on internet about this issue and I found this article:Troubleshooting Fortran Integration Issues with Visual Studio Which says:

If you are using Intel Parallel Studio XE 2017 (compiler version 17.0), Visual Studio versions 2012, 2013 and 2015 are supported.

So I tried to download the Ms Visual Studio Community 2015 but I can't. Microsoft web site only offer Visual Studio Community 2017 nowadays.

I want to build Fortran or C/C++ Project using Math Kernel Library or Blas, Linpack or Lapack. What can I do? Is there a way to resolve this integration issue, Should I find a VS Community 2015 or maybe Should I try GNU-GCC compiler but in this case how use the LINPACK?

Adolfo Correa
  • 273
  • 1
  • 3
  • 13
  • 1
    There isn't a solution to your problem other than using VS2015 the package addon you downloaded doesn't support VS3017 – Ramhound Apr 08 '17 at 20:49
  • But How can I get the VS2015? I couldn't find on Microsoft web site https://www.visualstudio.com/vs/older-downloads/ – Adolfo Correa Apr 08 '17 at 20:58
  • I can't help with VS2015 but I have an answer with VS2013, ISOs for VS2015 still exist, but I got plans....https://superuser.com/questions/840295/microsoft-visual-studio-2013-update-4-rtm-iso-offline-installer/840305#840305 – Ramhound Apr 08 '17 at 21:13
  • @AdolfoCorrea same issue with me. Did you get any solution? – Micky K Oct 18 '18 at 03:26
  • Yes @MickyK , I have answered below what I did to "solved". You have to install one of the compatible version of VS with your Intel Parallel Studio. You must have a compatible version of Visual Studio and Intel Parallel. – Adolfo Correa Oct 19 '18 at 14:19
  • @AdolfoCorrea the following issue is resolve but we I run the simple code of fortran in VS then i face the error "rc.exe not execute". – Micky K Oct 20 '18 at 04:27
  • @MickyK When you open a new project in Visual Studio... can you see an option to create a fortran project? if intel parallel studio it`s working you can forget the visual studio and use any text editor to write your code. Try to compile your simple code following the next video https://youtu.be/-E0gTgIPXRU – Adolfo Correa Oct 23 '18 at 00:28
  • As of today, MS offers free community editions of 2019, 2017, 2015.. etc. All versions. – Echeban Jun 26 '19 at 18:12
  • Also, as of today, Intel offers the latest version XE 2019 free to students and educators, but it requires approval before you download so I am waiting for them to respond. – Echeban Jun 26 '19 at 18:27

3 Answers3

2

At that time, the solution was to install the VS Community 2015, like @Ramhound commented and after reinstalling the Intel Parallel Studio XE 2017. Currently, Intel Parallel Studio XE 2018 supports Visual Studio 2017.

But in the future, this problem could repeat then the next are steps for install the latest Visual Studio supported by the Intel Parallel Studio XE.

  1. First, check out the version of Visual Studio that is supported by the Intel Parallel Studio XE available. You can check at this site Troubleshooting Fortran Integration Issues with Microsoft Visual Studio*

  2. Install the Visual Studio supported by the Intel Parallel Studio XE that you're going to install. If the supported version of Visual Studio isn't the latest one, you can download a older version from VS older downloads

  3. Finally, install the Parallel Studio XE.

Adolfo Correa
  • 273
  • 1
  • 3
  • 13
0

You need to install this add-on at https://marketplace.visualstudio.com/items?itemName=ChuckPiper.vs-extension-17264 , should work for visual studio 2017. Haven't tried it myself 'cause I don't know any Fortran...yet.

Dave
  • 11
0

According to Steve Lionel, AKA Mr. Fortran:

VS2015 Community DOES support Intel Fortran, and indeed I tested this exact combination just the other day. You do need to select a Custom install of VS2015 and check the box for Programming Languages > C++. If you didn't do that before, rerun the VS install, change the setting, then rerun the Parallel Studio XE install (2015 Update 4 or later) to select VS2015 integration.

If this doesn't help, you may need to locate where the Windows SDK was installed as part of VS and add its binary path to the Executables list under Tools > Options > Intel Compilers and Libraries > Visual Fortran > Compilers. On my system this is C:\Program Files (x86)\Windows Kits\8.1\bin\x64\rc.exe (for 64-bit) and C:\Program Files (x86)\Windows Kits\8.1\bin\x86\rc.exe for 32-bit

Rich Pauloo
  • 101
  • 3