Hi
I am following the extns wiki and am doing a post install strip at the point where I have installed to /tmp such that
cd /tmp/$W
root@box:/tmp/weechat# find . | xargs file | grep "executable" | grep ELF | grep "not stripped" | cut -f 1 -d : | xargs strip --strip-u
nneeded 2> /dev/null
root@box:/tmp/weechat# find . | xargs file | grep "shared object" | grep ELF | grep "not stripped" | cut -f 1 -d : | xargs strip -g 2> /de
v/null
Not check the exe is ok
file weechat/usr/local/bin/weechat-curses
weechat/usr/local/bin/weechat-curses: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 3.0.21, stripped
as expected now test one of the shared objects....all are un-stripped BTW
file weechat/usr/local/lib/weechat/plugins/tcl.so
weechat/usr/local/lib/weechat/plugins/tcl.so: ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, not stripped
QUESTIONS
#######
upstream for weechat wants cmake used and I used it
----Does that make a difference to why so files are not stripping?
Otherwise
What do I do now?
I don't want dev members not liking me for leaving bigger files than necessary in submission
thanks for reading