5

And why does gdb seem to "hit" it?

Michael Pryor
  • 25,046
  • 18
  • 72
  • 90

1 Answers1

3

According to this page, GDB is searching backward in the object code to find the beginning of a function, and it is hitting an imposed limit. If you can set the fence post limit to 0 or increase it, you might avoid the error, but it will take longer to run.

Terhorst
  • 2,071
  • 3
  • 16
  • 19