strip 用法
Shared Library(*.so)
strip --strip-debug --remove-section=.note --remove-section=.comment *.so
kernel module(*.ko)
strip -g -S -d *.ko or strip --strip-debug --strip-unneeded *.ko
find ./ install/lib/modules/3.10.17/kernel/ -iname "*.ko" -exec strip -g -S -d {} \;
strip --strip-debug --remove-section=.note --remove-section=.comment *.so
kernel module(*.ko)
strip -g -S -d *.ko or strip --strip-debug --strip-unneeded *.ko
find ./ install/lib/modules/3.10.17/kernel/ -iname "*.ko" -exec strip -g -S -d {} \;
留言
張貼留言