1

请考虑以下结构:

/* Complex Structure */
typedef struct
{
char_t  s4_1 [15];
int_t   s4_2;
} struct4_st;

typedef struct
{
char_t  s3_1 [15];
int_t s3_2;
} struct3_st;

typedef struct
{
struct3_st  s2_1;
struct4_st  s2_2;
} struct2_st;


typedef struct
{
int_t   s1_1;
char_t  s1_2;
struct2_st s1_3;
} struct1_st;

struct sample
{
    int_t sample1;
    int_t sample2;
char_t sample3[20];
struct1_st sample4;
} test;

如果我在包含这个结构的函数上放置一个断点,我可以以 Pretty-Print 格式打印这个结构的参数。

我的要求是:

我想使用 GDB 输出编写代码来填充这些结构。

是否有任何高级命令可以在单独的行上为每个结构成员提供,例如:

gdb$ <command> test

所需输出:

test.sample1=1
test.sample2=2;
test.sample3="hello"
test.sample4.s1_1=3
test.sample4.s1_2='t'

谢谢。

4

1 回答 1

2

gdb 中没有内置命令可以执行此操作。

如果您的 gdb 支持 Python,那么您自己编写它并不难。

于 2013-07-31T13:16:15.023 回答