view make/linux/makefiles/build_vm_def.sh @ 3876:31e253c1da42 jdk8-b02

Added tag jdk8-b01 for changeset 0cc8a70952c3
author cl
date Thu, 18 Aug 2011 18:55:12 -0700
parents a5610f0862fe
children da0999c4b733
line wrap: on
line source

#!/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

$NM --defined-only $* | awk '
   { if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 ";" }
   '