view make/solaris/makefiles/build_vm_def.sh @ 13330:1f4c9729c9f0

add base class for new object nodes, simplification to remove new objects without real usages
author Lukas Stadler <lukas.stadler@jku.at>
date Fri, 13 Dec 2013 22:43:21 +0100
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