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 on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.

Problem building an F77 program

Rodnny_F_
Beginner
1,102 Views

I'm trying to use and old program in F77, that runs Ok in Compaq Fortran and older Power Station Fortran, but when I tried to run this in Intel Paralel Studio XE 2013 for Windows I have some strange responses:

1. The program compiles and links OK without errors (console3 application) it was inserted as fixed-form fortran file *.for

2. When I try to run (start debug) it starts asking for data file and then stops showing these messages:

'Console3.exe': Loaded 'C:\Users\professor\Documents\Visual Studio 2010\Projects\Console3\Console3\Debug\Console3.exe', Symbols loaded.
'Console3.exe': Loaded 'C:\Windows\SysWOW64\ntdll.dll', Cannot find or open the PDB file
'Console3.exe': Loaded 'C:\Program Files\AVAST Software\Avast\snxhk.dll', Cannot find or open the PDB file
'Console3.exe': Loaded 'C:\Windows\SysWOW64\kernel32.dll', Cannot find or open the PDB file
'Console3.exe': Loaded 'C:\Windows\SysWOW64\KernelBase.dll', Cannot find or open the PDB file
'Console3.exe': Loaded 'C:\Windows\SysWOW64\imagehlp.dll', Cannot find or open the PDB file
'Console3.exe': Loaded 'C:\Windows\SysWOW64\msvcrt.dll', Cannot find or open the PDB file
'Console3.exe': Loaded 'C:\Windows\SysWOW64\advapi32.dll', Cannot find or open the PDB file
'Console3.exe': Loaded 'C:\Windows\SysWOW64\sechost.dll', Cannot find or open the PDB file
'Console3.exe': Loaded 'C:\Windows\SysWOW64\rpcrt4.dll', Cannot find or open the PDB file
'Console3.exe': Loaded 'C:\Windows\SysWOW64\sspicli.dll', Cannot find or open the PDB file
'Console3.exe': Loaded 'C:\Windows\SysWOW64\cryptbase.dll', Cannot find or open the PDB file
'Console3.exe': Loaded 'C:\Windows\SysWOW64\dbghelp.dll', Cannot find or open the PDB file
Console3.exe has triggered a breakpoint
The program '[4644] Console3.exe: Native' has exited with code 29 (0x1d).

What's the problem? is there any compilation directive that I have to adjust?

Thanks in advance

Rodnny J M Fakhye

Federal Technological University of Paraná

Brazil

0 Kudos
2 Replies
mecej4
Honored Contributor III
1,102 Views

You can ignore all the messages about not finding PDB files for system DLLS. Before you run the program, set a breakpoint at the first executable statement in your source code. Then, when you run, the program will stop at that statement and the debugger will wait for input from you before letting the program to go forward.

0 Kudos
Rodnny_F_
Beginner
1,102 Views

Thanks a lot,  i have no experience with MS Visual Studio. Now it´s working fine.

0 Kudos
Reply