when stop-mode debug linux kernel, global static variable cannot showed in expressions window, even when PC is at the same source code with the variable.
I'm sure the vmlinux has the varialbe in symbol tables, checked by "objdump -t vmlinux".
In the memory window, the variable can be found using the address in objdump, but cannot searched by input the variable name.
following snap show the static global variable gpio_bank. It is unknow in expresstion window, but can showed in memory browser.
But it is ok In simple program like this:
#include <stdio.h>
int aaaaaa=1;
static bbbbb=2;
int main(void) {
printf("Hello World!%d\n",aaaaaa+bbbbb);
return 0;
}
I hope this problem is fixed in ccs 5.4, but the installation is failed. see http://e2e.ti.com/support/development_tools/code_composer_studio/f/81/t/276463.aspx





