我有一个teststring.cpp文件,我希望看看gdb是否可以输出std :: string值:
#include<string>
#include<iostream>
using namespace std;
string sHello="hello world";
int main()
{
cout<<sHello.c_str()<<endl;
return 0;
}
使用g ++ teststring.cpp -g和gdb a.out
(gdb) b main
Breakpoint 1 at 0x400bfa: file teststring.cpp, line 7.
(gdb) r
Starting program: /home/x/a.out
Breakpoint 1, main () at teststring.cpp:7
7 cout<<sHello.c_str()<<endl;
(gdb) p sHello
No symbol "sHello" in current context.
这很奇怪。如果我搬家
string sHello="hello world";
成为主要的第一行,如下:
#include<string>
#include<iostream>
using namespace std;
int main()
{
string sHello="hello world";
cout<<sHello.c_str()<<endl;
return 0;
}
如果我调试它,那么“p sHello”将起作用。 这对我来说太奇怪了。
为什么说没有符号?
更奇怪的是,我使用“$ readelf -s a.out | grep sHello”检查a.out的两个版本,它们都没有给我任何结果。
我想当有名为“sHello”的符号时:
sHello应该出现在ELF文件的符号表中,对吗?
答案 0 :(得分:1)
更奇怪的是,我使用“$ readelf -s a.out | grep sHello”检查a.out的两个版本,它们都没有给我任何结果。
你应该尝试:
$ readelf -w a.out | fgrep sHello
<2fd3> DW_AT_name : (indirect string, offset: 0xce6): sHello
-w
开关显示文件中调试部分的内容(如果存在)。
为什么说没有符号?
罪魁祸首可能是编译器和调试器之间的不匹配。
我无法重现问题(使用g ++ v5.4.0和gdb 7.11.1):
(gdb) p sHello
$3 = {static npos = <optimized out>,
_M_dataplus = {<std::allocator<char>> =
{<__gnu_cxx::new_allocator<char>> = {<No data fields>},
<No data fields>},
_M_p = 0x614c38 "hello world"}}
也许在更高版本的GDB上,您将获得预期的行为。