build_vm_def.sh revision 2796
0N/A#!/bin/sh
2362N/A
0N/A# If we're cross compiling use that path for nm
0N/Aif [ "$CROSS_COMPILE_ARCH" != "" ]; then
0N/ANM=$ALT_COMPILER_PATH/nm
0N/Aelse
2362N/ANM=nm
0N/Afi
2362N/A
0N/A$NM --defined-only $* | awk '
0N/A { if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 ";" }
0N/A '
0N/A