X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=tools%2Fmake_linux_package.sh;h=aea1c567e88ee9a41493b06933c67fda88db6a89;hb=ba6d86bdcd017195fc5780fe6882569984d0957a;hp=332c281b015285c2bb24ddbaf44a6192c061d4e1;hpb=da8210b947821b2002ce7dfb34eba213a2da73a3;p=apps%2Fagl-service-can-low-level.git diff --git a/tools/make_linux_package.sh b/tools/make_linux_package.sh index 332c281b..aea1c567 100755 --- a/tools/make_linux_package.sh +++ b/tools/make_linux_package.sh @@ -31,7 +31,8 @@ rm $DEST/generator/protoc-gen-nanopb.py # Package the protoc compiler cp `which protoc` $DEST/generator-bin/protoc.bin LIBPROTOC=$(ldd `which protoc` | grep -o '/.*libprotoc[^ ]*') -cp $LIBPROTOC $DEST/generator-bin/ +LIBPROTOBUF=$(ldd `which protoc` | grep -o '/.*libprotobuf[^ ]*') +cp $LIBPROTOC $LIBPROTOBUF $DEST/generator-bin/ cat > $DEST/generator-bin/protoc << EOF #!/bin/bash SCRIPTDIR=\$(dirname "\$0") @@ -41,6 +42,9 @@ exec "\$SCRIPTDIR/protoc.bin" "\$@" EOF chmod +x $DEST/generator-bin/protoc +# Remove debugging symbols to reduce size of package +( cd $DEST/generator-bin; strip *.so *.so.* ) + # Tar it all up ( cd dist; tar -czf $VERSION.tar.gz $VERSION )