我目前正在从gdb打印变量的内容,如下所示:
(gdb) call printf("%s",buffer)
缓冲区包含一个大字符串,我想将其重定向到文件而不是屏幕。
在gdb中启用logging
功能对此无效。而且我无法使用>
命令重定向。当然,我可以在程序中创建一个文件,并将缓冲区写入该文件,并通过gdb调用write to file。但是有更简单的方法吗?
答案 0 :(得分:1)
你能使用>
或者你不知道如何在gdb中使用它?您可以从gdb内部重定向输出。尝试:
(gdb) run > out.txt
(gdb) run > /dev/null
答案 1 :(得分:1)
这会将目标的标准输出重定向到您选择的文件,调用printf
,然后将标准输出恢复为之前的设置。在更改文件描述符之前调用fflush
,以便将输出发送到正确的位置。
$ gdb f
...
(gdb) list
1 #include <stdlib.h>
2 #include <stdio.h>
3 #include <string.h>
4
5 main()
6 {
7 char buf[] = "test";
8
9 printf("%p ", (void *)buf);
10 printf("%d\n", strlen(buf));
11 }
(gdb) break 10
Breakpoint 1 at 0x80484d3: file f.c, line 10.
(gdb) run
Starting program: f
Breakpoint 1, main () at f.c:10
10 printf("%d\n", strlen(buf));
(gdb) call fflush(stdout)
0xbffff117 $1 = 0
(gdb) call dup(1)
$2 = 3
(gdb) call creat("/tmp/outputfile",0644)
$3 = 4
(gdb) call dup2(4,1)
$4 = 1
(gdb) call printf("%s\n", buf)
$5 = 5
(gdb) call fflush(stdout)
$6 = 0
(gdb) call dup2(3,1)
$7 = 1
(gdb) call close(3)
$8 = 0
(gdb) call close(4)
$9 = 0
(gdb) cont
Continuing.
4
[Inferior 1 (process 3214) exited with code 02]
(gdb) shell cat /tmp/outputfile
test