Home > Enterprise >  How to disable CRC checks in gdb?
How to disable CRC checks in gdb?

Time:12-21

Afer adding a symbol index to some debug symbol file I get a CRC mismatch on gdb:

warning: the debug information found in "/xxx/yyy/lib/debug/libzzz.so" does not match "target:/lib/libzzz.so" (CRC mismatch)

Is there are a general settings in gdb to disable all sanity checks while loading files?

CodePudding user response:

There's no setting to disable the CRC check when loading a separate debug file.

  • Related