Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Announcements
FPGA community forums and blogs have moved to the Altera Community. Existing Intel Community members can sign in with their current credentials.
29306 Discussions

problem getting IVF compiler running

intel_ip
Beginner
6,116 Views

I purchased the latest version of IVF compiler for Windows 8 last week, having already checked out the trial version a couple of months ago.  I believe I managed to download the code OK and even the installation seemed to go well, except at the very end when it asks me to hit ‘finish’, it says that I would be sent to the ‘start page’, but wasn’t.  I am having problems running the IVF compiler – I’m stuck on the page which is included in the attachment.  I have also attached some correspondence showing proof o f purchase and product serial #.  I find I cannot go any further as I do not know my license code even though a file containing that info was attached.  The start page also mentions about my license having already expired.   I am assuming that the product I have just purchased will allow me to do exactly what I had been doing before when operating on Windows 7 – correct?

I would appreciate if you could let me know what I am missing in getting IVF compiler running – thanks.

 

 

0 Kudos
25 Replies
intel_ip
Beginner
1,143 Views

I just found the include files in C:\Program Files\Microsoft SDKs\Windows\v7.1\Include directory (not Program Files (x86).  I then modified the include section as shown below

$(IFortInstallDir)compiler\include
$(IFortInstallDir)compiler\include\ia32
$(IFortInstallDir)mkl\include
$(VCInstallDir)atlmfc\include
$(VCInstallDir)include
$C:\Program Files\Microsoft SDKs\Windows\v7.1A\Include
$(FrameworkSDKDir)include

but I got the same error message as before when compiling the resource file, not being able to open 'prsht.h' file even though it is present in the include directory.

 

 

 

 

0 Kudos
Steven_L_Intel1
Employee
1,143 Views

Did you take out the line for $(WindowsSDKDIr)\include ? I am not sure why all those C .h files are being included in a .rc.
 

0 Kudos
intel_ip
Beginner
1,143 Views

Yes, I deleted that include.  What is included in the include section is exactly what you see above.

The lines below are the first lines of the resource file for compilation:

 

// Generated by ResEdit 1.5.4

// Copyright (C) 2006-2010

// http://www.resedit.net

#include <winres.h>

#include <commctrl.h>

#include <richedit.h>

#include "osd.h"

 

 

 

//

// Menu resources

//

LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US

CMNDLGMENU MENU

{

POPUP ""

{

MENUITEM "&Undo\tCtrl+Z", IDM_UNDO

MENUITEM SEPARATOR

MENUITEM "Cu&t\tCtrl+C", IDM_CUT

MENUITEM "&Copy\tCtrl+C", IDM_COPY

MENUITEM "&Paste\tCtrl+V", IDM_PASTE

}

The following lines are the output after the resource file failed to compile

 

Compiling resources...

opticsoft.rc

Microsoft (R) Windows (R) Resource Compiler Version 6.1.7600.16385

Copyright (C) Microsoft Corporation. All rights reserved.

c:\Program Files (x86)\Microsoft Visual Studio 10.0\Intel Fortran\Microsoft Files\VC\PlatformSDK\include\commctrl.h(94) : fatal error RC1015: cannot open include file 'prsht.h'.

Build log written to "file://c:\opticsoft\i1311\opticsoft\opticsoft\Debug\BuildLog.htm"

opticsoft - 1 error(s), 0 warning(s)

 

If you think it useful I can include the complete resource file.

I do have a number of Microsoft Visual Studio applications, blank, 8.0, 9.0, 10.0 and 12.0 in both the c:\program files\ and c:\program files (x86)\ I thought I had removed them with the uninstall feature.  Which should I keep as it appears from the compilation error that it was looking into the 10.0 version?

Thanks for the help.

---------------------- Done ----------------------

 

0 Kudos
intel_ip
Beginner
1,143 Views

Hi Steve: I spent quite some time playing around with this and that trying o get the IVF compiler working and finally managed to get some luck when I decided to copy and paste the actual address of the include file from its directory location to the include box instead of typing it in.  Not sure why this worked unless there are some hidden characters present as the lines containing the include statements appeared exactly the same.  Anyway I do have the IVF compiler working now.

Thanks for your help. Cheers, Ian

 

0 Kudos
Steven_L_Intel1
Employee
1,143 Views

Glad to hear it.

0 Kudos
Reply