From: Petteri Aimonen Date: Mon, 24 Oct 2016 09:26:55 +0000 (+0300) Subject: Strip debug symbols from linux library files X-Git-Tag: 5.0.2~186^2~49 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=89aaa43cfbfa081a4c580d63b6d01e7dc017d1df;p=apps%2Fagl-service-can-low-level.git Strip debug symbols from linux library files --- diff --git a/tools/make_linux_package.sh b/tools/make_linux_package.sh index 6598936a..d45f9856 100755 --- a/tools/make_linux_package.sh +++ b/tools/make_linux_package.sh @@ -42,6 +42,9 @@ exec "\$SCRIPTDIR/protoc.bin" "\$@" EOF chmod +x $DEST/generator-bin/protoc +# Remove debugging symbols to reduce size of package +( cd $DEST; strip *.so ) + # Tar it all up ( cd dist; tar -czf $VERSION.tar.gz $VERSION )