We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9e3c7f commit bc6b9a1Copy full SHA for bc6b9a1
build-tc.sh
@@ -46,6 +46,11 @@ for f in $(find installTmp -type f -exec file {} \;); do
46
if [ -n "$(echo $f | grep 'not stripped')" ]; then
47
strip --strip-unneeded "$i"
48
fi
49
+ elif [ -n "$(echo $f | grep 'ELF .* relocatable')" ]; then
50
+ if [ -n "$(echo $f | grep 'not stripped')" ]; then
51
+ i=$(echo $f | awk '{print $1}');
52
+ strip --strip-unneeded "${i: : -1}"
53
+ fi
54
else
55
56
i=$(echo $f | awk '{print $1}');
0 commit comments