Don't strip binaries in static.sh (#11832) ##build

This commit is contained in:
Stefan Ilic 2018-10-16 23:38:42 +02:00 committed by radare
parent 0a699f60e1
commit 0e62aee601

View File

@ -7,12 +7,6 @@ MAKE=make
gmake --help >/dev/null 2>&1
[ $? = 0 ] && MAKE=gmake
if [ `uname` = Darwin ]; then
STRIP="strip"
else
STRIP="strip -s"
fi
# find root
cd "$(dirname "$PWD/$0")" ; cd ..
@ -48,7 +42,6 @@ for a in ${BINS} ; do
${MAKE} clean
#LDFLAGS=-static ${MAKE} -j2
${MAKE} -j4 || exit 1
${STRIP} $a
)
done