comparison make/linux/makefiles/build_vm_def.sh @ 3954:da0999c4b733

7071904: 4/4 HotSpot: Full Debug Symbols Summary: Add support for .debuginfo files for HSX libraries. Reviewed-by: poonam, dholmes, never
author dcubed
date Fri, 16 Sep 2011 16:21:20 -0700
parents a5610f0862fe
children
comparison
equal deleted inserted replaced
3950:5a3c2bc614ca 3954:da0999c4b733
5 NM=$ALT_COMPILER_PATH/nm 5 NM=$ALT_COMPILER_PATH/nm
6 else 6 else
7 NM=nm 7 NM=nm
8 fi 8 fi
9 9
10 $NM --defined-only $* | awk ' 10 $NM --defined-only $* \
11 { if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 ";" } 11 | awk '{
12 ' 12 if ($3 ~ /^_ZTV/ || $3 ~ /^gHotSpotVM/) print "\t" $3 ";"
13 if ($3 ~ /^UseSharedSpaces$/) print "\t" $3 ";"
14 if ($3 ~ /^_ZN9Arguments17SharedArchivePathE$/) print "\t" $3 ";"
15 }' \
16 | sort -u