![]() |
|
|||
0001 #!/bin/sh 0002 objdump="$1" 0003 file="$2" 0004 $objdump -t "$file" | grep '*UUND*' | grep -v '#scratch' > /dev/null 2>&1 0005 if [ $? -eq 1 ]; then 0006 exit 0 0007 else 0008 echo "$file: undefined symbols found" >&2 0009 exit 1 0010 fi
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.1.0 LXR engine. The LXR team |
![]() ![]() |