mrbgems/mruby-bin-strip/README.md
mruby-strip removes debug information from compiled mruby bytecode files to reduce file size.
mruby-strip [switches] irepfiles
-l, --lvar - remove LVAR section too (local variable names)# Strip debug info from a compiled file
mruby-strip script.mrb
# Strip debug info and local variable names
mruby-strip -l script.mrb
mruby-strip --lvar script.mrb
# Strip multiple files
mruby-strip file1.mrb file2.mrb file3.mrb
-l option additionally removes local variable names, which are needed for some reflection featuresMIT License - see the mruby LICENSE file.