2017-05-16 10:54:05 -04:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Strip debugging information from object files and executables.
|
|
|
|
#
|
|
|
|
# Analogous to GNU strip used for ELF and other binary formats.
|
|
|
|
# Note that calculation breakdowns will not work after stripping.
|
|
|
|
##
|
|
|
|
|
|
|
|
# debug assignments
|
2017-07-18 15:32:42 -04:00
|
|
|
sed -i 's#/\*!+\*/[^!]\+/\*!-\*/##g' "$@"
|
2017-05-16 10:54:05 -04:00
|
|
|
|