Intel® C++ Compiler
Community support and assistance for creating C++ code that runs on platforms based on Intel® processors.
7956 Discussions

Intel Fortran 9.0 debug problems

khenemura
Beginner
277 Views

I'm using the intel fortran 9 compiler and have some problems.

When I debug variables from a module, the debugger shows weird data in the watch window

Also when I debug allocated arrays like:

type

(RetDat), allocatable :: SteerPar(:)

Type RetDat
Real :: Tlen
Real :: Ad_mass(6,6)
Real :: Kdata(36,max_conv)
Real, pointer :: udata(:,:)
Integer :: nk(36)
Integer :: nu
End type

The debuggers shows also weird data. (only when the struct contains pointers btw)

Are this known problems?? And how can I solve them?
Everything works fine with the"Compaq Visual Fortan6.6 compiler"
I've ported a program from CVF to IVF

Thanks in advance!
Mark

0 Kudos
1 Reply
khenemura
Beginner
277 Views

I already know the problem

In the module I use

!DEC$ATTRIBUTES DLLEXPORT :: my_variable

Somehow the debugger cant handle it. Quite anoying

0 Kudos
Reply