summaryrefslogtreecommitdiffstats
path: root/core/filter_symbols.sh
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:14 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:14 -0800
commit05806d7af62e07c6225b2e7103a1b115ecf6c9ad (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /core/filter_symbols.sh
parent094268cf8cb37b9d904c8a1e3559cdd46d73cf66 (diff)
downloadbuild-05806d7af62e07c6225b2e7103a1b115ecf6c9ad.zip
build-05806d7af62e07c6225b2e7103a1b115ecf6c9ad.tar.gz
build-05806d7af62e07c6225b2e7103a1b115ecf6c9ad.tar.bz2
auto import from //depot/cupcake/@135843
Diffstat (limited to 'core/filter_symbols.sh')
-rw-r--r--core/filter_symbols.sh25
1 files changed, 0 insertions, 25 deletions
diff --git a/core/filter_symbols.sh b/core/filter_symbols.sh
deleted file mode 100644
index ba5057a..0000000
--- a/core/filter_symbols.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-NM=$1
-
-shift
-
-PREFIX=$1
-
-shift
-
-SUFFIX=$1
-
-shift
-
-while test "$1" != ""
-do
- $NM -g -fp $1 | while read -a line
- do
- type=${line[1]}
- # if [[ "$type" != "V" && "$type" != "U" ]]; then
- #if [[ "$type" != "W" && "$type" != "V" && "$type" != "U" ]]; then
- echo "$PREFIX${line[0]}$SUFFIX # ${line[1]}"
- #fi
- done
-
- shift
-done