radare2/libr/stripsyms.sh
pancake deb263a5fb * Apply whats's patch fixing r_search for stripstr
- Thanks! :)
* Added dummy r_socket_proc_* api
  - Needs to be moved outside r_socket
  - Added two non-working usage examples
* Add some checks and enhacements to the r_buf API
  - Implemented in r_util.vapi
* R_APIfy the r_cache api
* Add missing methods in r_socket.vapi
* Update the README file in r_anal describing the
  new design of r_anal..not yet finished
2009-10-12 17:41:52 +02:00

22 lines
464 B
Bash

#!/bin/sh
[ -z "$2" ] && exit 0
FILE=$1
PFX=$2
LIST=$1.list
if [ "${PFX}" = "r_util" ]; then
echo "=> No stripping any symbol in libr_util O:)"
exit 0
PFX="r_"
fi
nm --defined-only -B ${FILE} 2>/dev/null | grep -v ^${PFX}_ | awk '{print $3}' > ${LIST}
#if [ -n "`cat /tmp/list`" ]; then
echo "=> Stripping unnecessary symbols for ${FILE}..."
objcopy --strip-symbols ${LIST} ${FILE} 2>/dev/null
#TODO: Uncomment on release
#strip -s ${FILE}
#fi
rm -f ${LIST}