2011-09-25 23:03:29 +00: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 20:14:03 +00:00
|
|
|
$NM -Uj $* | awk '
|
|
|
|
{ if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 }
|
2011-09-25 23:03:29 +00:00
|
|
|
'
|