2014-06-27 12:33:05 +01:00
|
|
|
# This setup hook strips libraries and executables in the fixup phase.
|
|
|
|
|
2014-07-08 12:47:09 +01:00
|
|
|
fixupOutputHooks+=(_doStrip)
|
2014-06-27 12:33:05 +01:00
|
|
|
|
|
|
|
_doStrip() {
|
|
|
|
if [ -z "$dontStrip" ]; then
|
2016-04-28 22:48:13 +01:00
|
|
|
stripDebugList=${stripDebugList:-.}
|
2014-06-27 12:33:05 +01:00
|
|
|
if [ -n "$stripDebugList" ]; then
|
|
|
|
stripDirs "$stripDebugList" "${stripDebugFlags:--S}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
stripAllList=${stripAllList:-}
|
|
|
|
if [ -n "$stripAllList" ]; then
|
|
|
|
stripDirs "$stripAllList" "${stripAllFlags:--s}"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
stripDirs() {
|
|
|
|
local dirs="$1"
|
|
|
|
local stripFlags="$2"
|
|
|
|
local dirsNew=
|
|
|
|
|
|
|
|
for d in ${dirs}; do
|
|
|
|
if [ -d "$prefix/$d" ]; then
|
|
|
|
dirsNew="${dirsNew} $prefix/$d "
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
dirs=${dirsNew}
|
|
|
|
|
|
|
|
if [ -n "${dirs}" ]; then
|
2016-04-28 22:48:13 +01:00
|
|
|
header "Stripping (with flags $stripFlags) in$dirs"
|
|
|
|
while IFS= read -r -d $'\0' f; do
|
|
|
|
if out=$(strip $commonStripFlags $stripFlags "$f" 2>&1); then
|
|
|
|
echo "Stripped $f"
|
|
|
|
else
|
|
|
|
# Ignore failures on files that cannot be stripped.
|
|
|
|
if [ "$out" = "strip:$f: File format not recognized" ]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Strip failed on file $f: $out"
|
|
|
|
false # fail !
|
|
|
|
fi
|
|
|
|
done < <(find $dirs -type f -print0)
|
2014-06-27 12:33:05 +01:00
|
|
|
stopNest
|
|
|
|
fi
|
|
|
|
}
|