view make/solaris/makefiles/build_vm_def.sh @ 18080:5bb683bbe2c7 jdk8u31-b00

Added tag jdk8u25-b06 for changeset 605df8463453
author asaha
date Mon, 07 Jul 2014 13:12:15 -0700
parents da0999c4b733
children
line wrap: on
line source

#!/bin/sh

/usr/ccs/bin/nm -p $* \
    | awk '{
          if ($2 == "U") next
          if ($3 ~ /^__1c.*__vtbl_$/ || $3 ~ /^gHotSpotVM/) print "\t" $3 ";"
          if ($3 ~ /^UseSharedSpaces$/) print "\t" $3 ";"
          if ($3 ~ /^__1cJArgumentsRSharedArchivePath_$/) print "\t" $3 ";"
          }' \
    | sort -u