Autospec and Stripping binaries

Is compilation of full-debug-info required for no-strip? What is the purpose?

so we have two models:

  1. include most debug info in the binary that is shipped in the OS image (default)
  2. have separate debug info that we magically download on demand if you run a debugger (used to be default, but we’re switching to #1 by default)

full-debug-info is #2 ,… and we mostly use it for cases where the built in debug info is disproportionally large

you can also prevent stripping altogether, mostly for cases where “strip” would break a binary
… which is the nostrip option

1 Like