1#!/bin/sh 2 3# If we're cross compiling use that path for nm 4if [ "$CROSS_COMPILE_ARCH" != "" ]; then 5NM=$ALT_COMPILER_PATH/nm 6else 7NM=nm 8fi 9 10$NM -Uj $* | awk ' 11 { if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 } 12 ' 13 14