Add option KeepByteCodeSymbols to keep the symbol table when stripping bytecode
Option -s
of bcstrip
was added in abc-interpreter@49085f9c.
So there are basically three options:
- Strip sections and symbol table (useful when you just want to interpret)
- Strip sections but keep symbols (useful when you want to serialize/deserialize)
- Don't strip (useful if you suspect a bug in the stripper)
Before you would need option 3 for using the serialization library, but now the most sensible default is option 2.