2011-09-25 16:03:29 -07:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# If we're cross compiling use that path for nm
|
|
|
|
if [ "$CROSS_COMPILE_ARCH" != "" ]; then
|
|
|
|
NM=$ALT_COMPILER_PATH/nm
|
|
|
|
else
|
|
|
|
NM=nm
|
|
|
|
fi
|
|
|
|
|
2013-06-19 13:14:03 -07:00
|
|
|
$NM -Uj $* | awk '
|
|
|
|
{ if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 }
|
2011-09-25 16:03:29 -07:00
|
|
|
'
|