79687047

Date: 2025-07-02 07:59:43
Score: 0.5
Natty:
Report link

Save the symbols in a file:

objcopy --only-keep-debug [executable] [executable].dbg

Strip the symbols from the executable:

objcopy --strip-debug [executable]

Add a link to the symbols file to the executable:

objcopy --add-gnu-debuglink=[executable].dbg [executable]

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: thomas