view make/solaris/makefiles/build_vm_def.sh @ 17582:47f10bcd16b2

8040163: Increment hsx 25.11 build to b02 for 8u11-b04 Reviewed-by: jcoomes
author asaha
date Mon, 14 Apr 2014 09:08:01 -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