| kevinchkin (448) | ||
|
Hi Guys, I am trying to debug a program using gdb. I am using Boost regex.hpp in some of my .hh files. As I do gdb ./a.out. It give me warnings like
There are no other warnings like this. Can someone please point me what I am doing wrong? Thanks a lot. | ||
|
|
||
| helios (10126) | |
|
Wow. That's some path. The warning is saying that you don't have debugging symbols for boost::regex, which means the debugger can't know, for example, what symbols (functions, global data, etc.) are defined in the library. You can ignore it. | |
|
|
|
| kevinchkin (448) | |
| Thanks helios. | |
|
|
|