Code Review
/
apps
/
agl-service-can-low-level.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
b850cf9
)
Strip debug symbols from linux library files
author
Petteri Aimonen
<jpa@git.mail.kapsi.fi>
Mon, 24 Oct 2016 09:26:55 +0000
(12:26 +0300)
committer
Petteri Aimonen
<jpa@git.mail.kapsi.fi>
Mon, 24 Oct 2016 09:26:55 +0000
(12:26 +0300)
tools/make_linux_package.sh
patch
|
blob
|
history
diff --git
a/tools/make_linux_package.sh
b/tools/make_linux_package.sh
index
6598936
..
d45f985
100755
(executable)
--- 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 )