No symbols loade

I developed an fortran application with PGI Visual Fortran 10.8 x64. But when I run the application I receive:

‘Boudary_Value_Problem.exe’: Loaded ‘C:\Windows\SysWOW64\ntdll.dll’, No symbols loaded.
‘Boudary_Value_Problem.exe’: Loaded ‘C:\Windows\syswow64\kernel32.dll’, No symbols loaded.
‘Boudary_Value_Problem.exe’: Loaded ‘C:\Windows\syswow64\KERNELBASE.dll’, No symbols loaded.
The thread ‘0.0’ (0x790) has exited with code 0 (0x0).
The program ‘Boudary_Value_Problem.exe: PGI Debug Engine’ has exited with code 0 (0x0).

What may be the problem?

Hi ferry2,

The message, “No symbol loaded” are just informational that the debugger was able to load any debugging symbols from these DLLs. You still can debug your program, but just not be able to step into these libraries.

What may be the problem?

Since exit code “0” means that your program exited successfully, it seems fine.

  • Mat