Discussion:
eclipse debugginh
Volkan
2009-07-08 06:20:37 UTC
Permalink
Hello,

I am a new eclipse user. I am tryin to see the components of an array or
matrix on eclipse cdt. But it gices me this error when I click on it:
"Cannot look up value of a typedef"

Is there a way to see the array components? thanks

V
--
View this message in context: http://www.nabble.com/eclipse-debugginh-tp24386025p24386025.html
Sent from the Eclipse CDT - debug mailing list archive at Nabble.com.
Elena Laskavaia
2009-07-08 12:46:30 UTC
Permalink
That is look like a bug.
Create a simple array like
int a[100];
you should be able to see it in variable view, expand it and see its elements.
Post by Volkan
Hello,
I am a new eclipse user. I am tryin to see the components of an array or
"Cannot look up value of a typedef"
Is there a way to see the array components? thanks
V
Volkan
2009-07-09 23:05:26 UTC
Permalink
hello,

I created two dimensional array such as
double A[10][10]
and then I assigned it to a matrix like B(10,10) by a loop.

In the debugger, I can see the components of A but not B. I have many
matrices in the form of B(i,j), therefore I like to see the components of B
in the debugger but it does not allow me to do that. it gives this error:
"Cannot look up value of a typedef".

Do you have any idea why it happens?

Thanks
V
Post by Elena Laskavaia
That is look like a bug.
Create a simple array like
int a[100];
you should be able to see it in variable view, expand it and see its elements.
Post by Volkan
Hello,
I am a new eclipse user. I am tryin to see the components of an array or
"Cannot look up value of a typedef"
Is there a way to see the array components? thanks
V
_______________________________________________
cdt-debug-dev mailing list
https://dev.eclipse.org/mailman/listinfo/cdt-debug-dev
--
View this message in context: http://www.nabble.com/eclipse-debugginh-tp24386025p24419310.html
Sent from the Eclipse CDT - debug mailing list archive at Nabble.com.
Loading...