source:
vendor/current/source4/scripting/devel/nmfind
Last change on this file was 988, checked in by , 9 years ago | |
---|---|
File size: 252 bytes |
Line | |
---|---|
1 | #!/bin/sh |
2 | |
3 | # find object files containing a symbol |
4 | # for example: |
5 | # nmfind foo_function $(find bin/default -name '*.o') |
6 | |
7 | TARGET=$1 |
8 | shift |
9 | for f in $*; do |
10 | if nm $f 2>&1 | grep $TARGET > /dev/null; then |
11 | echo [$f] |
12 | nm $f | grep $TARGET |
13 | echo |
14 | fi |
15 | done |
Note:
See TracBrowser
for help on using the repository browser.